diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-14 13:50:39 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-14 13:50:39 +0000 |
commit | 8b7e919bac6bc01a61f24a040daac383fb5ec84d (patch) | |
tree | f141c54628babadddf33bf6cea0e25d7b7516b7c /libc/stdio | |
parent | 3c2175b12b8a6cd2362a8c5bd8e2e31d54a8b4da (diff) |
Hide _stdio_init/term, sorry, one change went mistakenly into the earlier commit
Diffstat (limited to 'libc/stdio')
-rw-r--r-- | libc/stdio/_stdio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/_stdio.c b/libc/stdio/_stdio.c index 727f9e363..54319118f 100644 --- a/libc/stdio/_stdio.c +++ b/libc/stdio/_stdio.c @@ -176,7 +176,7 @@ void attribute_hidden __stdio_init_mutex(pthread_mutex_t *m) /**********************************************************************/ /* We assume here that we are the only remaining thread. */ -void _stdio_term(void) +void attribute_hidden _stdio_term(void) { #if defined(__STDIO_BUFFERS) || defined(__UCLIBC_HAS_GLIBC_CUSTOM_STREAMS__) register FILE *ptr; @@ -238,7 +238,7 @@ void _stdio_term(void) #endif } -void _stdio_init(void) +void attribute_hidden _stdio_init(void) { #ifdef __STDIO_BUFFERS int old_errno = errno; |