diff options
author | Stephen Torri <storri@users.sourceforge.net> | 2003-09-16 02:12:54 +0000 |
---|---|---|
committer | Stephen Torri <storri@users.sourceforge.net> | 2003-09-16 02:12:54 +0000 |
commit | 08fcb22dd2f34e1e14e7a9cc214adfd0f958c78c (patch) | |
tree | 62cf0faf8b922d69d0f350738dc6958b2abe04d1 /src/xine-utils/xmlparser.c | |
parent | d485d8a5ff5068f08e7ff38f5cda53739226777e (diff) | |
download | xine-lib-08fcb22dd2f34e1e14e7a9cc214adfd0f958c78c.tar.gz xine-lib-08fcb22dd2f34e1e14e7a9cc214adfd0f958c78c.tar.bz2 |
Removed headers that were providing nothing needed to the build.
CVS patchset: 5393
CVS date: 2003/09/16 02:12:54
Diffstat (limited to 'src/xine-utils/xmlparser.c')
-rw-r--r-- | src/xine-utils/xmlparser.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/xine-utils/xmlparser.c b/src/xine-utils/xmlparser.c index 0fb840b1e..429a3bdf9 100644 --- a/src/xine-utils/xmlparser.c +++ b/src/xine-utils/xmlparser.c @@ -18,14 +18,10 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xmlparser.c,v 1.8 2003/09/13 14:30:29 tmattern Exp $ + * $Id: xmlparser.c,v 1.9 2003/09/16 02:12:54 storri Exp $ * */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -58,7 +54,7 @@ static char * strtoupper(char * str) { return str; } -static xml_node_t * new_xml_node() { +static xml_node_t * new_xml_node(void) { xml_node_t * new_node; new_node = (xml_node_t*) malloc(sizeof(xml_node_t)); @@ -78,7 +74,7 @@ static void free_xml_node(xml_node_t * node) { free(node); } -static xml_property_t * new_xml_property() { +static xml_property_t * new_xml_property(void) { xml_property_t * new_property; new_property = (xml_property_t*) malloc(sizeof(xml_property_t)); |