summaryrefslogtreecommitdiff
path: root/util/strlcat.c
diff options
context:
space:
mode:
Diffstat (limited to 'util/strlcat.c')
-rw-r--r--util/strlcat.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/util/strlcat.c b/util/strlcat.c
index 46edd434..c659b73a 100644
--- a/util/strlcat.c
+++ b/util/strlcat.c
@@ -4,8 +4,6 @@
* Returns strlen(src); if retval >= siz, truncation occurred.
*/
-#ifdef NEED_STRLCAT
-
#include <string.h>
int strlcat(char *dst, const char *src, int siz)
@@ -35,5 +33,3 @@ int strlcat(char *dst, const char *src, int siz)
return dlen + (s - src); /* count does not include NUL */
}
-#endif
-