From 539b07cb8856ba3ee39bbcebb43df1292e60a5b7 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 10 Dec 2008 23:05:50 +0000 Subject: [PATCH] Add prototypes. --- cpukit/libcsupport/src/strlcat.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cpukit/libcsupport/src/strlcat.c b/cpukit/libcsupport/src/strlcat.c index e0424eef7b..b617cb93e8 100644 --- a/cpukit/libcsupport/src/strlcat.c +++ b/cpukit/libcsupport/src/strlcat.c @@ -29,10 +29,10 @@ * always leaves destination null-terminated (for len > 0). */ size_t -strlcat(dest, src, len) - char *dest; - const char *src; - size_t len; +strlcat( + char *dest, + const char *src, + size_t len ) { size_t dlen = strlen(dest);