diff options
Diffstat (limited to 'libc/string/generic/strncpy.c')
-rw-r--r-- | libc/string/generic/strncpy.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/string/generic/strncpy.c b/libc/string/generic/strncpy.c index 214f38430..f1ae63042 100644 --- a/libc/string/generic/strncpy.c +++ b/libc/string/generic/strncpy.c @@ -21,8 +21,7 @@ #undef strncpy -char * -strncpy (s1, s2, n) +char attribute_hidden *__strncpy (s1, s2, n) char *s1; const char *s2; size_t n; @@ -84,3 +83,5 @@ strncpy (s1, s2, n) return s; } + +strong_alias(__strncpy, strncpy) |