aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/stdio/findfp.c
diff options
context:
space:
mode:
authorAlfred Perlstein <alfred@FreeBSD.org>2002-10-31 01:54:27 +0000
committerAlfred Perlstein <alfred@FreeBSD.org>2002-10-31 01:54:27 +0000
commitc313cb2abfc2d90a004d2acbf1d070ed7b6e84c7 (patch)
tree677ca542ccea3573f25e6ade778e983829c6a1c7 /lib/libc/stdio/findfp.c
parent700f0531923a1d9b72b6c7fbf5d19c7562b04be2 (diff)
downloadsrc-c313cb2abfc2d90a004d2acbf1d070ed7b6e84c7.tar.gz
src-c313cb2abfc2d90a004d2acbf1d070ed7b6e84c7.zip
Make __sF static. This can not be allowed to exist in 5.x.
Notes
Notes: svn path=/head/; revision=106230
Diffstat (limited to 'lib/libc/stdio/findfp.c')
-rw-r--r--lib/libc/stdio/findfp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/findfp.c b/lib/libc/stdio/findfp.c
index 84b6703c52bc..5538a57260bc 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)