diff options
author | Alexander Polcyn <apolcyn@google.com> | 2018-02-06 20:27:49 -0800 |
---|---|---|
committer | Alexander Polcyn <apolcyn@google.com> | 2018-03-20 23:51:23 -0700 |
commit | 47a92893a3f80238fbe9f761db4fc3dc79fbd6de (patch) | |
tree | 1d19ef9f56fafecaf99844213630765dc02d1aed /third_party | |
parent | 5de347855a5e283d1bfb123d9bc08dc4e53ccff1 (diff) |
Remove unnecessary header inclusion from address sorting's public header
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/address_sorting/address_sorting.h | 2 | ||||
-rw-r--r-- | third_party/address_sorting/address_sorting_internal.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/third_party/address_sorting/address_sorting.h b/third_party/address_sorting/address_sorting.h index d3d3759d14..f11cd424b5 100644 --- a/third_party/address_sorting/address_sorting.h +++ b/third_party/address_sorting/address_sorting.h @@ -45,8 +45,6 @@ extern "C" { #endif -#include <stdbool.h> - typedef struct address_sorting_address { char addr[128]; size_t len; diff --git a/third_party/address_sorting/address_sorting_internal.h b/third_party/address_sorting/address_sorting_internal.h index ee366fef1c..3966002b47 100644 --- a/third_party/address_sorting/address_sorting_internal.h +++ b/third_party/address_sorting/address_sorting_internal.h @@ -60,6 +60,7 @@ #define ADDRESS_SORTING_POSIX 1 #endif +#include <stdbool.h> #include "address_sorting.h" address_sorting_source_addr_factory* |