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>
This commit is contained in:
Andreas Schneider
2017-10-28 14:31:37 +02:00
parent d3834f69bc
commit f0ddde4826
47 changed files with 92 additions and 21 deletions

View File

@@ -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)