summaryrefslogtreecommitdiff
path: root/common/compat.h
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2004-07-19 17:49:09 +0000
committerStef Walter <stef@memberwebs.com>2004-07-19 17:49:09 +0000
commit086da0b54d7f5711733febdb27507a5400767be6 (patch)
treea8cbf97d4d71ae9803cfb16e29d5d9732e878aa6 /common/compat.h
parent0d8273a6e327e1e9a2bdddcea1e1b19bcb544247 (diff)
Miscellaneous fixes (lost track).
Diffstat (limited to 'common/compat.h')
-rw-r--r--common/compat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/compat.h b/common/compat.h
index 0690bfc..98ebade 100644
--- a/common/compat.h
+++ b/common/compat.h
@@ -77,11 +77,11 @@ char* strupr(char* s);
#endif
#ifndef HAVE_STRLCAT
-void strlcat(char *dst, const char *src, size_t size);
+size_t strlcat(char *dst, const char *src, size_t size);
#endif
#ifndef HAVE_STRLCPY
-void strlcpy(char *dst, const char *src, size_t size);
+size_t strlcpy(char *dst, const char *src, size_t size);
#endif
#endif /* _COMPAT_H_ */