From c58d48f962346e4644deb63f9fb6bd5306fb9e43 Mon Sep 17 00:00:00 2001 From: c9s Date: Wed, 28 May 2014 21:56:22 +0800 Subject: [PATCH] Fix include --- include/r3.h | 1 - src/match_entry.c | 10 +++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/include/r3.h b/include/r3.h index 75c769a..a5002a1 100644 --- a/include/r3.h +++ b/include/r3.h @@ -10,7 +10,6 @@ #include #include #include -#include #include #include #include "r3_define.h" diff --git a/src/match_entry.c b/src/match_entry.c index 2396747..7b0d719 100644 --- a/src/match_entry.c +++ b/src/match_entry.c @@ -4,8 +4,16 @@ * * Distributed under terms of the MIT license. */ -#include "match_entry.h" +#include +#include +#include +#include +#include + +#include "r3.h" #include "zmalloc.h" +#include "match_entry.h" + match_entry * match_entry_createl(const char * path, int path_len) { match_entry * entry = zmalloc(sizeof(match_entry));