summaryrefslogtreecommitdiffstats
path: root/bsd-strlcat.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-11-22 13:57:07 +1100
committerDamien Miller <djm@mindrot.org>1999-11-22 13:57:07 +1100
commitb3ca3aa12f8248c2d9e23f15a46e0f3c97397e54 (patch)
tree7833695d2f077b965b02a5b9927be50456d172d7 /bsd-strlcat.h
parenta75cb9666237b3479471238eb26b39872b9858e0 (diff)
- Added OpenBSD bsd-strlcat.c, created bsd-strlcat.h
- Added timersum() macro - Tidy RCSIDs of bsd-*.c
Diffstat (limited to 'bsd-strlcat.h')
-rw-r--r--bsd-strlcat.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/bsd-strlcat.h b/bsd-strlcat.h
new file mode 100644
index 00000000..562dc704
--- /dev/null
+++ b/bsd-strlcat.h
@@ -0,0 +1,10 @@
+#ifndef _BSD_STRLCAT_H
+#define _BSD_STRLCAT_H
+
+#include "config.h"
+#ifndef HAVE_STRLCAT
+#include <sys/types.h>
+size_t strlcat(char *dst, const char *src, size_t siz);
+#endif /* !HAVE_STRLCAT */
+
+#endif /* _BSD_STRLCAT_H */