summaryrefslogtreecommitdiff
path: root/libc/string/i386/strcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/i386/strcpy.c')
-rw-r--r--libc/string/i386/strcpy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/i386/strcpy.c b/libc/string/i386/strcpy.c
index 361dcdbb9..9e2b81009 100644
--- a/libc/string/i386/strcpy.c
+++ b/libc/string/i386/strcpy.c
@@ -32,6 +32,7 @@
#include <string.h>
+libc_hidden_proto(strcpy)
char *strcpy(char * dest, const char * src)
{
int d0, d1, d2;
@@ -44,5 +45,4 @@ char *strcpy(char * dest, const char * src)
:"0" (src),"1" (dest) : "memory");
return dest;
}
-libc_hidden_proto(strcpy)
libc_hidden_def(strcpy)