summaryrefslogtreecommitdiff
path: root/libc/stdio/fdopen.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-08 14:49:09 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-08 14:49:09 +0000
commite385ba0d0df0854d3f46df7bc37785ef4422f278 (patch)
treef752d766a8f50590ba0c5f9319146a2cc911648f /libc/stdio/fdopen.c
parent960acb5e3248b2ba657f65ea011703c57539c5a8 (diff)
Hide some of the f* *printf, use them as well
Diffstat (limited to 'libc/stdio/fdopen.c')
-rw-r--r--libc/stdio/fdopen.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/stdio/fdopen.c b/libc/stdio/fdopen.c
index fa08c976d..9b08b4b71 100644
--- a/libc/stdio/fdopen.c
+++ b/libc/stdio/fdopen.c
@@ -7,7 +7,7 @@
#include "_stdio.h"
-FILE *fdopen(int filedes, const char *mode)
+FILE attribute_hidden *__fdopen(int filedes, const char *mode)
{
intptr_t cur_mode;
@@ -15,3 +15,4 @@ FILE *fdopen(int filedes, const char *mode)
? _stdio_fopen(cur_mode, mode, NULL, filedes)
: NULL;
}
+strong_alias(__fdopen,fdopen)