summaryrefslogtreecommitdiff
path: root/libc/stdio
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-08 21:01:23 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-08 21:01:23 +0000
commit77ccb5b1dca86acdc7c75abc5bb469da41872a20 (patch)
tree13fb13805ef3018a0a12f102f72ce2c61532fde3 /libc/stdio
parent7a3dea048d88faa3bbe1c99bcf3fdb98eabae52d (diff)
mmap/mremap/socket/rewind gone
Diffstat (limited to 'libc/stdio')
-rw-r--r--libc/stdio/rewind.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/stdio/rewind.c b/libc/stdio/rewind.c
index 7f36a77ff..aa4534aa7 100644
--- a/libc/stdio/rewind.c
+++ b/libc/stdio/rewind.c
@@ -7,7 +7,7 @@
#include "_stdio.h"
-void rewind(register FILE *stream)
+void attribute_hidden __rewind(register FILE *stream)
{
__STDIO_AUTO_THREADLOCK_VAR;
@@ -18,3 +18,4 @@ void rewind(register FILE *stream)
__STDIO_AUTO_THREADUNLOCK(stream);
}
+strong_alias(__rewind,rewind)