diff options
author | Tim J. Robbins <tjr@FreeBSD.org> | 2002-09-06 11:24:06 +0000 |
---|---|---|
committer | Tim J. Robbins <tjr@FreeBSD.org> | 2002-09-06 11:24:06 +0000 |
commit | 58d38e25205c6ee5ef0796ffa2cd8e2ca6c6e7f3 (patch) | |
tree | ee19d604b38f08d225b97c81a641deba71f33d6b /lib/libc/string/strncpy.c | |
parent | 00f9b682956d9eda39f36dd9291d4313fc75025a (diff) |
Notes
Diffstat (limited to 'lib/libc/string/strncpy.c')
-rw-r--r-- | lib/libc/string/strncpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/string/strncpy.c b/lib/libc/string/strncpy.c index 90f848242766..7759e61a05d0 100644 --- a/lib/libc/string/strncpy.c +++ b/lib/libc/string/strncpy.c @@ -47,7 +47,7 @@ __FBSDID("$FreeBSD$"); * Return dst. */ char * -strncpy(char *__restrict dst, const char *__restrict src, size_t n) +strncpy(char * __restrict dst, const char * __restrict src, size_t n) { if (n != 0) { char *d = dst; |