From 7fe677c6d31a6fd854eaf64609d72b8613ca36ea Mon Sep 17 00:00:00 2001 From: "\"Steven J. Hill\"" Date: Sat, 10 Dec 2005 15:10:57 +0000 Subject: Merge from trunk. --- libc/stdio/fdopen.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libc/stdio/fdopen.c') 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) -- cgit v1.2.3