diff src/xmms-sid.c @ 223:16e3b2446a73

On some systems stdlib.h has prerequisite of stdio.h, corrected order of inclusion on some files to prevent problems.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 15 Dec 2004 14:18:00 +0000
parents 405b647cbd8d
children 2986069309c6
line wrap: on
line diff
--- a/src/xmms-sid.c	Wed Dec 15 14:02:05 2004 +0000
+++ b/src/xmms-sid.c	Wed Dec 15 14:18:00 2004 +0000
@@ -21,10 +21,6 @@
 */
 #include <pthread.h>
 
-#ifdef HAVE_STDLIB_H
-#include <stdlib.h>
-#endif
-
 #ifdef HAVE_STRING_H
 #include <string.h>
 #else
@@ -34,6 +30,11 @@
 #endif
 
 #include <stdio.h>
+
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
+
 #include <errno.h>
 
 #include <xmms/plugin.h>