diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-12 07:04:07 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2013-11-12 07:04:07 +0000 |
commit | d5fce3131f6267e503c9072e0fc2444870110936 (patch) | |
tree | e5c8dc6cabc1275a9a57d07a0e621b17549bc323 /lib/libc/stdio/findfp.c | |
parent | 910990649b773911284144e61f277ff454e04dbe (diff) |
both files contain a function which should only be static.
not cranking libc over this (unless an issue is found in ports)
Diffstat (limited to 'lib/libc/stdio/findfp.c')
-rw-r--r-- | lib/libc/stdio/findfp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/findfp.c b/lib/libc/stdio/findfp.c index 63458b18afa..c7f437a78f2 100644 --- a/lib/libc/stdio/findfp.c +++ b/lib/libc/stdio/findfp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: findfp.c,v 1.12 2009/11/09 00:18:27 kurt Exp $ */ +/* $OpenBSD: findfp.c,v 1.13 2013/11/12 07:04:06 deraadt Exp $ */ /*- * Copyright (c) 1990, 1993 * The Regents of the University of California. All rights reserved. @@ -146,7 +146,7 @@ found: * XXX. Force immediate allocation of internal memory. Not used by stdio, * but documented historically for certain applications. Bad applications. */ -void +static void f_prealloc(void) { struct glue *g; |