commit dd60d12a98b6962b2ec0c6fbac8b65cfbc4b7027
parent 013ec6d00bf39458db6a631ef377ada0a7296e3e
Author: Frederic Cambus <fcambus@users.sourceforge.net>
Date: Tue, 8 Dec 2015 15:35:09 +0100
Conditional include for 'strtonum'
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/src/main.c b/src/main.c
@@ -14,6 +14,11 @@
#include <string.h>
#include <stdbool.h>
#include <getopt.h>
+
+#ifndef HAVE_STRTONUM
+#include "../compat/strtonum.h"
+#endif
+
#include "alconfig.h"
#include "strtolower.h"
#include "substr.h"