diff options
Diffstat (limited to 'libc/string/generic/strcat.c')
-rw-r--r-- | libc/string/generic/strcat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/string/generic/strcat.c b/libc/string/generic/strcat.c index 5111a9a0f..53c4d0d9e 100644 --- a/libc/string/generic/strcat.c +++ b/libc/string/generic/strcat.c @@ -19,6 +19,7 @@ #include <string.h> #include "memcopy.h" +libc_hidden_proto(strcat) /* Append SRC on the end of DEST. */ char *strcat (char *dest, const char *src) { @@ -44,5 +45,4 @@ char *strcat (char *dest, const char *src) return dest; } -libc_hidden_proto(strcat) libc_hidden_def(strcat) |