about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-11-19 22:55:40 +0000
committerUlrich Drepper <drepper@redhat.com>1997-11-19 22:55:40 +0000
commit8ed0d0c8f8756cf56c1d8fbfbe81b72843cb0061 (patch)
treea42dcc68e07f993444c90a345aa4306e96ca500b
parente4dfe2462ddf3f6896b8231866fa39809921351a (diff)
downloadglibc-8ed0d0c8f8756cf56c1d8fbfbe81b72843cb0061.tar.gz
glibc-8ed0d0c8f8756cf56c1d8fbfbe81b72843cb0061.tar.xz
glibc-8ed0d0c8f8756cf56c1d8fbfbe81b72843cb0061.zip
Don't use _POSIX_SOURCE in header.
-rw-r--r--libio/stdio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/stdio.h b/libio/stdio.h
index 02d07688b5..cb254f618e 100644
--- a/libio/stdio.h
+++ b/libio/stdio.h
@@ -176,7 +176,7 @@ extern int obstack_printf __P ((struct obstack *__obstack, __const char *__fmt,
 				...));
 #endif
 
-#if !defined(__STRICT_ANSI__) || defined(_POSIX_SOURCE)
+#if !defined(__STRICT_ANSI__) || defined(__USE_POSIX)
 extern FILE *fdopen __P ((int, __const char *));
 extern int fileno __P ((FILE*));
 extern FILE* popen __P ((__const char*, __const char*));