From cc3685d59ff6d867998d48c0f7535715d5030078 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 28 Dec 1997 18:24:07 +0000 Subject: [PATCH] Correctly handle inclusion by stdio.h. --- sysdeps/posix/mk-stdiolim.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"); -- 2.47.2