diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-01 20:43:44 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-01 20:43:44 +0000 |
commit | 8a0b43005ad9ea011b80d66e32b46fb430ddaffb (patch) | |
tree | 418818740042c5dbba244bc1efc760c8d29e47a9 /libc/unistd/confstr.c | |
parent | 42b161bb716f35948fabd36472fb59cd0a20fa92 (diff) | |
download | uClibc-alpine-8a0b43005ad9ea011b80d66e32b46fb430ddaffb.tar.bz2 uClibc-alpine-8a0b43005ad9ea011b80d66e32b46fb430ddaffb.tar.xz |
Hide mostly used functions
Diffstat (limited to 'libc/unistd/confstr.c')
-rw-r--r-- | libc/unistd/confstr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/unistd/confstr.c b/libc/unistd/confstr.c index 017cf1e8e..bfaecb198 100644 --- a/libc/unistd/confstr.c +++ b/libc/unistd/confstr.c @@ -48,10 +48,10 @@ size_t confstr ( int name, char *buf, size_t len) if (len > 0 && buf != NULL) { if (string_len <= len) - memcpy (buf, string, string_len); + __memcpy (buf, string, string_len); else { - memcpy (buf, string, len - 1); + __memcpy (buf, string, len - 1); buf[len - 1] = '\0'; } } |