|
@@ -36,9 +36,6 @@
|
|
|
# include <config.h>
|
|
|
#endif
|
|
|
|
|
|
-#define __FORCE_GLIBC
|
|
|
-#include <features.h>
|
|
|
-
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
@@ -62,7 +59,7 @@
|
|
|
|
|
|
|
|
|
to get __GNU_LIBRARY__ defined. */
|
|
|
-#ifdef __GNU_LIBRARY__
|
|
|
+#if defined __GNU_LIBRARY__ || defined __UCLIBC__
|
|
|
|
|
|
contain conflicting prototypes for getopt. */
|
|
|
# include <stdlib.h>
|
|
@@ -161,7 +158,7 @@ int optopt = '?';
|
|
|
static struct _getopt_data getopt_data;
|
|
|
|
|
|
|
|
|
-#ifndef __GNU_LIBRARY__
|
|
|
+#if !defined __GNU_LIBRARY__ && !defined __UCLIBC__
|
|
|
|
|
|
|
|
|
whose names are inconsistent. */
|