summaryrefslogtreecommitdiff
path: root/libc/stdio/remove.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/remove.c
parentd0769ae0d6f6ea12a8d980521aa5f934c9eeaa4e (diff)
Do hidden fopen*/remove
Diffstat (limited to 'libc/stdio/remove.c')
-rw-r--r--libc/stdio/remove.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/stdio/remove.c b/libc/stdio/remove.c
index d471ae291..2d4fedcc1 100644
--- a/libc/stdio/remove.c
+++ b/libc/stdio/remove.c
@@ -19,7 +19,7 @@
* equivalent to rmdir(path).
*/
-int remove(register const char *filename)
+int attribute_hidden __remove(register const char *filename)
{
int saved_errno = errno;
int rv;
@@ -30,3 +30,4 @@ int remove(register const char *filename)
}
return rv;
}
+strong_alias(__remove,remove)