diff options
Diffstat (limited to 'lib/libc/stdio/remove.c')
-rw-r--r-- | lib/libc/stdio/remove.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/remove.c b/lib/libc/stdio/remove.c index d09d76f9df2..e08e5997658 100644 --- a/lib/libc/stdio/remove.c +++ b/lib/libc/stdio/remove.c @@ -1,4 +1,4 @@ -/* $OpenBSD: remove.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */ +/* $OpenBSD: remove.c,v 1.8 2015/08/31 02:53:57 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -47,3 +47,4 @@ remove(const char *file) return (rmdir(file)); return (unlink(file)); } +DEF_STRONG(remove); |