OSDN Git Service

__uClibc_main.c: do not include unused headers
authorPeter S. Mazinger <ps.m@gmx.net>
Thu, 24 Mar 2011 13:55:57 +0000 (14:55 +0100)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Fri, 15 Jun 2012 12:00:33 +0000 (14:00 +0200)
Remove unneeded headers.
Guard inclusion of fcntl.h.
While there, remove an obsoleted comment.

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
libc/misc/internals/__uClibc_main.c

index 9f7258d..f2290b3 100644 (file)
@@ -25,9 +25,9 @@
 #include <errno.h>
 #include <netdb.h>
 #include <stdio.h>
+#ifndef __ARCH_HAS_NO_LDSO__
 #include <fcntl.h>
-#include <sys/stat.h>
-#include <sys/sysmacros.h>
+#endif
 #ifdef __UCLIBC_HAS_THREADS_NATIVE__
 #include <pthread-functions.h>
 #include <not-cancel.h>
@@ -157,7 +157,6 @@ weak_alias (program_invocation_name, __progname_full)
 char **__environ = 0;
 weak_alias(__environ, environ)
 
-/* TODO: don't export __pagesize; we cant now because libpthread uses it */
 size_t __pagesize = 0;
 
 #ifndef O_NOFOLLOW