diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-05 15:04:18 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-05 15:04:18 -0400 |
commit | 459382986102dd1bd84bca24a0fddfe04efefd76 (patch) | |
tree | 2c0de91fc434a812acf9ce3bfccb93cb2f306fa2 /src/test/test_handles.c | |
parent | 0adcfbc7c8b579ebfe4c16c86700e8b466fc9a56 (diff) | |
download | tor-459382986102dd1bd84bca24a0fddfe04efefd76.tar.gz tor-459382986102dd1bd84bca24a0fddfe04efefd76.zip |
Remove util.h
Inline its contents (which were all includes) into or.h, and some of
its contents into other places that didn't include or.h at all.
Diffstat (limited to 'src/test/test_handles.c')
-rw-r--r-- | src/test/test_handles.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/test_handles.c b/src/test/test_handles.c index 26c68aa8a3..2910d7e18f 100644 --- a/src/test/test_handles.c +++ b/src/test/test_handles.c @@ -4,8 +4,10 @@ #include "orconfig.h" #include "test/test.h" -#include "common/util.h" #include "lib/container/handles.h" +#include "lib/log/util_bug.h" + +#include <stdio.h> typedef struct demo_t { HANDLE_ENTRY(demo, demo_t); @@ -94,4 +96,3 @@ struct testcase_t handle_tests[] = { HANDLE_TEST(basic, 0), END_OF_TESTCASES }; - |