summaryrefslogtreecommitdiff
path: root/src/openbsd-compat/openbsd-compat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/openbsd-compat/openbsd-compat.h')
-rw-r--r--src/openbsd-compat/openbsd-compat.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/openbsd-compat/openbsd-compat.h b/src/openbsd-compat/openbsd-compat.h
new file mode 100644
index 0000000..33c0288
--- /dev/null
+++ b/src/openbsd-compat/openbsd-compat.h
@@ -0,0 +1,10 @@
+#ifndef _OPENBSD_COMPAT_H
+#define _OPENBSD_COMPAT_H
+
+#include "config.h"
+
+#ifndef HAVE_STRLCAT
+size_t strlcat(char *dst, const char *src, size_t siz);
+#endif
+
+#endif /* _OPENBSD_COMPAT_H_ */