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/strlcpy.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'util/strlcpy.c') diff --git a/util/strlcpy.c b/util/strlcpy.c index 72e45d6b..73416ae1 100644 --- a/util/strlcpy.c +++ b/util/strlcpy.c @@ -3,8 +3,6 @@ * Returns strlen(src); if retval >= siz, truncation occurred. */ -#ifdef NEED_STRLCPY - #include int strlcpy(char *dst, const char *src, int siz) @@ -32,5 +30,3 @@ int strlcpy(char *dst, const char *src, int siz) return(s - src - 1); /* count does not include NUL */ } -#endif - -- cgit v1.2.3