From 05e75260d6952308d7c865ff67c0e3678b7ba935 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Thu, 26 Jan 2006 22:04:19 +0000 Subject: Get rid of missing prototype warnings --- libc/stdio/_store_inttype.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libc/stdio/_store_inttype.c') diff --git a/libc/stdio/_store_inttype.c b/libc/stdio/_store_inttype.c index 82fb894c6..6eb74fe86 100644 --- a/libc/stdio/_store_inttype.c +++ b/libc/stdio/_store_inttype.c @@ -28,7 +28,8 @@ /* We assume int may be short or long, but short and long are different. */ -void attribute_hidden _store_inttype(register void *dest, int desttype, uintmax_t val) +void _store_inttype(register void *dest, int desttype, uintmax_t val) attribute_hidden; +void _store_inttype(register void *dest, int desttype, uintmax_t val) { if (desttype == __PA_FLAG_CHAR) { /* assume char not int */ *((unsigned char *) dest) = val; -- cgit v1.2.3