summaryrefslogtreecommitdiff
path: root/src/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
commit7193299b2407a4ff6cea4c25a217857ace27f1e7 (patch)
tree8946b0c96b63961223f2cfdfb74a9f09d675c1ba /src/compat.h
parentaba21d50ab7e88a05f17de05ba5dedab58a29616 (diff)
Miscellaneous fixes (lost track).
Diffstat (limited to 'src/compat.h')
-rw-r--r--src/compat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compat.h b/src/compat.h
index 0690bfc..98ebade 100644
--- a/src/compat.h
+++ b/src/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_ */