diff options
Diffstat (limited to 'src/or/statefile.c')
-rw-r--r-- | src/or/statefile.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/or/statefile.c b/src/or/statefile.c index 80c56b2d52..e9db1ff069 100644 --- a/src/or/statefile.c +++ b/src/or/statefile.c @@ -42,6 +42,13 @@ #include "or/router.h" #include "lib/sandbox/sandbox.h" #include "or/statefile.h" +#include "lib/encoding/confline.h" + +#include "or/or_state_st.h" + +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif /** A list of state-file "abbreviations," for compatibility. */ static config_abbrev_t state_abbrevs_[] = { @@ -708,4 +715,3 @@ or_state_free_all(void) or_state_free(global_state); global_state = NULL; } - |