summaryrefslogtreecommitdiff
path: root/src/array.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/array.h')
-rw-r--r--src/array.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/array.h b/src/array.h
index 9b23699..84245c7 100644
--- a/src/array.h
+++ b/src/array.h
@@ -1,15 +1,18 @@
#ifndef ARRAY_H
#define ARRAY_H
-#include <stdlib.h>
#ifdef HAVE_CONFIG_H
-#include "config.h"
+# include "config.h"
#endif
+
#ifdef HAVE_PCRE_H
# include <pcre.h>
#endif
+
#include "buffer.h"
+#include <stdlib.h>
+
#define DATA_IS_STRING(x) (x->type == TYPE_STRING)
typedef enum { TYPE_UNSET, TYPE_STRING, TYPE_COUNT, TYPE_ARRAY, TYPE_INTEGER, TYPE_FASTCGI, TYPE_CONFIG } data_type_t;