Fix include

This commit is contained in:
c9s 2014-05-28 21:56:22 +08:00
parent d400789d96
commit c58d48f962
2 changed files with 9 additions and 2 deletions

View file

@ -10,7 +10,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <pcre.h>
#include <stdbool.h>
#include "r3_define.h"

View file

@ -4,8 +4,16 @@
*
* Distributed under terms of the MIT license.
*/
#include "match_entry.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <pcre.h>
#include <stdbool.h>
#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));