From: Ulrich Drepper Date: Sun, 28 Dec 1997 18:24:07 +0000 (+0000) Subject: Correctly handle inclusion by stdio.h. X-Git-Tag: cvs/glibc-2_0_6~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc3685d59ff6d867998d48c0f7535715d5030078;p=thirdparty%2Fglibc.git Correctly handle inclusion by stdio.h. --- diff --git a/sysdeps/posix/mk-stdiolim.c b/sysdeps/posix/mk-stdiolim.c index 3fb58ec4b8c..8bc7a8ba011 100644 --- a/sysdeps/posix/mk-stdiolim.c +++ b/sysdeps/posix/mk-stdiolim.c @@ -23,7 +23,7 @@ main() { /* These values correspond to the code in sysdeps/posix/tempname.c. Change the values here if you change that code. */ - puts ("#ifndef __need_FOPEN_MAX"); + puts ("#ifdef _STDIO_H"); printf("#define L_tmpnam %u\n", sizeof("/usr/tmp/") + 9); printf("#define TMP_MAX %u\n", 62 * 62 * 62); @@ -48,6 +48,7 @@ main() #endif ); + puts ("#undef __need_FOPEN_MAX"); puts ("#define __need_FOPEN_MAX 1"); puts ("#endif\n");