diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-14 22:57:45 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-14 22:57:45 +0000 |
commit | f8703c6453b64fd74354a0851f6fb05795c31956 (patch) | |
tree | 252885111008043b1682496df58e46cbcd93d480 /libc/string/generic/strncpy.c | |
parent | 032a3e76d290c776e26ae6c0a68e8b19885a68aa (diff) | |
download | uClibc-alpine-f8703c6453b64fd74354a0851f6fb05795c31956.tar.bz2 uClibc-alpine-f8703c6453b64fd74354a0851f6fb05795c31956.tar.xz |
Move to use attribute_hidden
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) |