summaryrefslogtreecommitdiff
path: root/libc/stdio/fopen.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-13 10:00:07 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-13 10:00:07 +0000
commit20453d82ab702cd25791a84d10ef73cada4cc3b0 (patch)
tree62e2315b38daf4e7cab624daef11e5b968081986 /libc/stdio/fopen.c
parentd0769ae0d6f6ea12a8d980521aa5f934c9eeaa4e (diff)
Do hidden fopen*/remove
Diffstat (limited to 'libc/stdio/fopen.c')
-rw-r--r--libc/stdio/fopen.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/stdio/fopen.c b/libc/stdio/fopen.c
index 244304acf..ceea0f6b6 100644
--- a/libc/stdio/fopen.c
+++ b/libc/stdio/fopen.c
@@ -11,7 +11,8 @@
# define FILEDES_ARG (-1)
#endif
-FILE *fopen(const char * __restrict filename, const char * __restrict mode)
+FILE attribute_hidden *__fopen(const char * __restrict filename, const char * __restrict mode)
{
return _stdio_fopen(((intptr_t) filename), mode, NULL, FILEDES_ARG);
}
+strong_alias(__fopen,fopen)