Browse Source

__uClibc_main.c: do not include unused headers

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>
Peter S. Mazinger 13 years ago
parent
commit
6cd313691e
1 changed files with 2 additions and 3 deletions
  1. 2 3
      libc/misc/internals/__uClibc_main.c

+ 2 - 3
libc/misc/internals/__uClibc_main.c

@@ -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