From 0e3488899e7af0567e37b0915f15e5b70e70eb75 Mon Sep 17 00:00:00 2001
From: Peter S. Mazinger <ps.m@gmx.net>
Date: Thu, 24 Mar 2011 14:55:57 +0100
Subject: [PATCH 191/396] __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>
---
 libc/misc/internals/__uClibc_main.c |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/libc/misc/internals/__uClibc_main.c b/libc/misc/internals/__uClibc_main.c
index ca90ff8..95de892 100644
--- a/libc/misc/internals/__uClibc_main.c
+++ b/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>
@@ -161,7 +161,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
-- 
1.7.0.4

