include config.h in r3.h
This commit is contained in:
parent
a5035ad962
commit
21a8c0c891
1 changed files with 6 additions and 5 deletions
11
include/r3.h
11
include/r3.h
|
@ -16,6 +16,7 @@
|
|||
|
||||
#include "r3_define.h"
|
||||
#include "str_array.h"
|
||||
#include "config.h"
|
||||
|
||||
#ifdef HAVE_STDINT_H
|
||||
#include <stdint.h>
|
||||
|
@ -38,11 +39,11 @@ typedef struct _route route;
|
|||
struct _node {
|
||||
edge ** edges;
|
||||
route ** routes;
|
||||
int edge_len;
|
||||
int edge_cap;
|
||||
int route_len;
|
||||
int route_cap;
|
||||
int endpoint;
|
||||
uint32_t edge_len;
|
||||
uint32_t edge_cap;
|
||||
uint32_t route_len;
|
||||
uint32_t route_cap;
|
||||
int endpoint;
|
||||
|
||||
/** compile-time variables here.... **/
|
||||
|
||||
|
|
Loading…
Reference in a new issue