diff options
-rw-r--r-- | src/xine-utils/cpu_accel.c | 1 | ||||
-rw-r--r-- | src/xine-utils/xine_buffer.c | 3 | ||||
-rw-r--r-- | src/xine-utils/xmllexer.c | 6 | ||||
-rw-r--r-- | src/xine-utils/xmlparser.c | 10 |
4 files changed, 5 insertions, 15 deletions
diff --git a/src/xine-utils/cpu_accel.c b/src/xine-utils/cpu_accel.c index f4f083f70..6794143f7 100644 --- a/src/xine-utils/cpu_accel.c +++ b/src/xine-utils/cpu_accel.c @@ -27,7 +27,6 @@ #include <signal.h> #include <setjmp.h> -#include "attributes.h" #include "xineutils.h" /* diff --git a/src/xine-utils/xine_buffer.c b/src/xine-utils/xine_buffer.c index 1af58c48a..47d580439 100644 --- a/src/xine-utils/xine_buffer.c +++ b/src/xine-utils/xine_buffer.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_buffer.c,v 1.3 2002/12/24 00:59:36 holstsn Exp $ + * $Id: xine_buffer.c,v 1.4 2003/09/16 02:12:54 storri Exp $ * * * generic dynamic buffer functions. The goals @@ -54,7 +54,6 @@ #include <string.h> #include <inttypes.h> #include "xineutils.h" -#include "xine_buffer.h" #define LOG diff --git a/src/xine-utils/xmllexer.c b/src/xine-utils/xmllexer.c index 8e9f23926..153a6cf32 100644 --- a/src/xine-utils/xmllexer.c +++ b/src/xine-utils/xmllexer.c @@ -17,14 +17,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: xmllexer.c,v 1.2 2003/07/19 00:22:43 tmattern Exp $ + * $Id: xmllexer.c,v 1.3 2003/09/16 02:12:54 storri Exp $ * */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - #include "xmllexer.h" #include <stdio.h> #include <ctype.h> 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)); |