[fix] header guard and include

This commit is contained in:
Al
2015-07-21 15:38:45 -04:00
parent f99a90d64e
commit 179918917a

View File

@@ -1,6 +1,10 @@
#ifndef ADDRESS_EXPANSION_RULE_H
#define ADDRESS_EXPANSION_RULE_H
#include <stdlib.h>
#include "constants.h"
#include "gazetteers.h"
typedef struct address_expansion_rule {
char *phrase;
@@ -12,4 +16,7 @@ typedef struct address_language_index {
char language[MAX_LANGUAGE_LEN];
uint32_t index;
size_t len;
} address_language_index_t;
} address_language_index_t;
#endif