aboutsummaryrefslogtreecommitdiff
path: root/src/match.c
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 /src/match.c
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 'src/match.c')
-rw-r--r--src/match.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/match.c b/src/match.c
index 36cc922a..c613a2e6 100644
--- a/src/match.c
+++ b/src/match.c
@@ -35,8 +35,9 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+#include "config.h"
+
#include <ctype.h>
-#include <string.h>
#include <sys/types.h>
#include "libssh/priv.h"