aboutsummaryrefslogtreecommitdiff
path: root/include/libssh
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2017-10-28 14:31:37 +0200
committerAndreas Schneider <asn@cryptomilk.org>2017-10-28 14:31:37 +0200
commitf0ddde48262a2f6b71dda3b9718b1f216448060d (patch)
treec56821080815409c6c490b59a0cfe05209908be4 /include/libssh
parentd3834f69bc3ddaccdccf6df09c5526224ece761d (diff)
downloadlibssh-f0ddde48262a2f6b71dda3b9718b1f216448060d.tar.gz
libssh-f0ddde48262a2f6b71dda3b9718b1f216448060d.tar.xz
libssh-f0ddde48262a2f6b71dda3b9718b1f216448060d.zip
Fix config.h includes
We need stdlib.h and string.h in priv.h for free() and memset(). Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Diffstat (limited to 'include/libssh')
-rw-r--r--include/libssh/priv.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/libssh/priv.h b/include/libssh/priv.h
index 8e6a8e62..c2d20b2d 100644
--- a/include/libssh/priv.h
+++ b/include/libssh/priv.h
@@ -29,7 +29,8 @@
#ifndef _LIBSSH_PRIV_H
#define _LIBSSH_PRIV_H
-#include "config.h"
+#include <stdlib.h>
+#include <string.h>
#if !defined(HAVE_STRTOULL)
# if defined(HAVE___STRTOULL)