diff options
Diffstat (limited to 'libc/stdio/remove.c')
-rw-r--r-- | libc/stdio/remove.c | 3 |
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) |