]> Git Repo - uclibc-ng.git/commitdiff
Fix redefine problem
authorEric Andersen <[email protected]>
Tue, 26 Feb 2002 11:53:39 +0000 (11:53 -0000)
committerEric Andersen <[email protected]>
Tue, 26 Feb 2002 11:53:39 +0000 (11:53 -0000)
libc/misc/insremque/insremque.c

index 6a0e4e13309a11752dfa28e0b56a04319e1c4550..8cdf09b2353827557160a08e3a7163ff8161a9f3 100644 (file)
    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.  */
 
-#include <stddef.h>
+#include <features.h>
 #define _GNU_SOURCE
-#define _SVID_SOURCE
+#include <stddef.h>
+#ifndef _SVID_SOURCE
+#define _SVID_SOURCE 1
+#endif
 #include <search.h>
 
 /* Insert ELEM into a doubly-linked list, after PREV.  */
This page took 0.038603 seconds and 4 git commands to generate.