aboutsummaryrefslogtreecommitdiffstats
path: root/strlcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'strlcpy.c')
-rw-r--r--strlcpy.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/strlcpy.c b/strlcpy.c
index baf2c7a7..bb7d4096 100644
--- a/strlcpy.c
+++ b/strlcpy.c
@@ -28,10 +28,7 @@
* Returns strlen(src); if retval >= siz, truncation occurred.
*/
size_t
-strlcpy(dst, src, siz)
- char *dst;
- const char *src;
- size_t siz;
+strlcpy(char *dst, const char *src, size_t siz)
{
char *d = dst;
const char *s = src;