aboutsummaryrefslogtreecommitdiff
path: root/include/util
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-10-25 00:16:21 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-10-28 20:23:16 +0100
commit887b67908d0e6a2b2f50e04319c1cf4412a25f89 (patch)
tree74cb366e12ab7479bd8503e0e582fca5fc971ba5 /include/util
parent8b80fb92e5e07637f42382ec4e6e3417ade185c9 (diff)
Add libutil implementation for strndup in case it isn't available
"Some" "non-POSIX systems" don't have that. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/util')
-rw-r--r--include/util/compat.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/util/compat.h b/include/util/compat.h
index d69a1de..8566090 100644
--- a/include/util/compat.h
+++ b/include/util/compat.h
@@ -110,4 +110,8 @@ struct stat {
#include <sys/sysmacros.h>
#endif
+#ifndef HAVE_STRNDUP
+char *strndup(const char *str, size_t max_len);
+#endif
+
#endif /* COMPAT_H */