Fix include
This commit is contained in:
parent
d400789d96
commit
c58d48f962
2 changed files with 9 additions and 2 deletions
|
@ -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"
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue