From f2105f20cbd9ca7e8ebed81e165b296230d997f1 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Tue, 11 Jan 2005 18:47:38 +0100 Subject: fix jamfile & co for win32 --- util/strlcat.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'util/strlcat.c') 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 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 - -- cgit v1.2.3