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