aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2018-08-29 18:41:15 +0200
committerAndreas Schneider <asn@cryptomilk.org>2018-08-29 19:04:44 +0200
commit247983e9820fd264cb5a59c14cc12846c028bd08 (patch)
treed29b27aadcab16aa587df64c1972266bec994267 /include
parentf0e99961b6d04b6fc7d4054a6c111223d8ff2894 (diff)
downloadlibssh-247983e9820fd264cb5a59c14cc12846c028bd08.tar.gz
libssh-247983e9820fd264cb5a59c14cc12846c028bd08.tar.xz
libssh-247983e9820fd264cb5a59c14cc12846c028bd08.zip
misc: Add strndup implementation if not provides by the OS
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'include')
-rw-r--r--include/libssh/priv.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libssh/priv.h b/include/libssh/priv.h
index 0aab4edb..2123fc03 100644
--- a/include/libssh/priv.h
+++ b/include/libssh/priv.h
@@ -44,6 +44,10 @@
# endif
#endif /* !defined(HAVE_STRTOULL) */
+#if !defined(HAVE_STRNDUP)
+char *strndup(const char *s, size_t n);
+#endif /* ! HAVE_STRNDUP */
+
#ifdef HAVE_BYTESWAP_H
#include <byteswap.h>
#endif