From c313cb2abfc2d90a004d2acbf1d070ed7b6e84c7 Mon Sep 17 00:00:00 2001 From: Alfred Perlstein Date: Thu, 31 Oct 2002 01:54:27 +0000 Subject: [PATCH] Make __sF static. This can not be allowed to exist in 5.x. --- lib/libc/stdio/findfp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/stdio/findfp.c b/lib/libc/stdio/findfp.c index 84b6703c52b..5538a57260b 100644 --- a/lib/libc/stdio/findfp.c +++ b/lib/libc/stdio/findfp.c @@ -69,7 +69,7 @@ static struct glue uglue = { NULL, FOPEN_MAX - 3, usual }; static struct __sFILEX __sFX[3]; -FILE __sF[3] = { +static FILE __sF[3] = { std(__SRD, STDIN_FILENO), std(__SWR, STDOUT_FILENO), std(__SWR|__SNBF, STDERR_FILENO)