summaryrefslogtreecommitdiff
path: root/util/strlcpy.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2005-01-11 18:47:38 +0100
committerTor Andersson <tor@ghostscript.com>2005-01-11 18:47:38 +0100
commitf2105f20cbd9ca7e8ebed81e165b296230d997f1 (patch)
tree55d4308ada414abdb86ebcfa46ed77dab259db62 /util/strlcpy.c
parent4a6def1aebcb61599f9d975e92079aad5bb423c6 (diff)
downloadmupdf-f2105f20cbd9ca7e8ebed81e165b296230d997f1.tar.xz
fix jamfile & co for win32
Diffstat (limited to 'util/strlcpy.c')
-rw-r--r--util/strlcpy.c4
1 files changed, 0 insertions, 4 deletions
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 <string.h>
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
-