diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-29 11:42:52 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-29 12:21:52 -0400 |
commit | 6ac64e16ed6958d1a5960c560254217478b7ad87 (patch) | |
tree | 735265160969e1d4353168742124427f56b0df30 /src/test/test_tortls.c | |
parent | 077176a34c54929580a0178ce6667ae180c352d1 (diff) | |
download | tor-6ac64e16ed6958d1a5960c560254217478b7ad87.tar.gz tor-6ac64e16ed6958d1a5960c560254217478b7ad87.zip |
Eliminate compat.h
Diffstat (limited to 'src/test/test_tortls.c')
-rw-r--r-- | src/test/test_tortls.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/test_tortls.c b/src/test/test_tortls.c index f1b9b99f58..b456734684 100644 --- a/src/test/test_tortls.c +++ b/src/test/test_tortls.c @@ -11,7 +11,7 @@ #endif #include <math.h> -#include "common/compat.h" +#include "lib/cc/compat_compiler.h" /* Some versions of OpenSSL declare SSL_get_selected_srtp_profile twice in * srtp.h. Suppress the GCC warning so we can build with -Wredundant-decl. */ @@ -2839,4 +2839,3 @@ struct testcase_t tortls_tests[] = { LOCAL_TEST_CASE(context_init_one, 0), END_OF_TESTCASES }; - |