summaryrefslogtreecommitdiff
path: root/libc/stdio/_store_inttype.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-11-15 20:23:33 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-11-15 20:23:33 +0000
commit5da06322c21e27d5bc60459ae2f80a80d2c8162b (patch)
treed514819fb0e47354537c701f67d04e4f336ac792 /libc/stdio/_store_inttype.c
parentcc9da0a85c21f4c5c5e340ef5f7a86c6821476b5 (diff)
Hide more of stdio,getdents, use internal __raise
Diffstat (limited to 'libc/stdio/_store_inttype.c')
-rw-r--r--libc/stdio/_store_inttype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/_store_inttype.c b/libc/stdio/_store_inttype.c
index 228e90619..82fb894c6 100644
--- a/libc/stdio/_store_inttype.c
+++ b/libc/stdio/_store_inttype.c
@@ -28,7 +28,7 @@
/* We assume int may be short or long, but short and long are different. */
-void _store_inttype(register void *dest, int desttype, uintmax_t val)
+void attribute_hidden _store_inttype(register void *dest, int desttype, uintmax_t val)
{
if (desttype == __PA_FLAG_CHAR) { /* assume char not int */
*((unsigned char *) dest) = val;