Explorar o código

getttyent.c: include stdio_ext.h only when needed

do not include pthread.h as the locking macro is provided by stdio.h

Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Peter S. Mazinger %!s(int64=15) %!d(string=hai) anos
pai
achega
da192bef87
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  1. 1 2
      libc/misc/ttyent/getttyent.c

+ 1 - 2
libc/misc/ttyent/getttyent.c

@@ -30,12 +30,11 @@
 #include <features.h>
 #include <ttyent.h>
 #include <stdio.h>
-#include <stdio_ext.h>
 #include <ctype.h>
 #include <string.h>
 #include <stdlib.h>
 #ifdef __UCLIBC_HAS_THREADS__
-# include <pthread.h>
+# include <stdio_ext.h>
 #endif
 
 static char zapchar;