tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit cb0af6157c0acbd0a30c20f8f0a3b9d4d1f402ad
parent 78eb0192dae890c473d1920e23635db6d3624b2f
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri, 27 Apr 2018 15:08:27 -0400

Move stdbool include to torint.h

It's friday, and this seems like a good idea, and they're egging me
on in IRC.

Diffstat:
Msrc/common/torint.h | 2++
Msrc/or/or.h | 1-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/common/torint.h b/src/common/torint.h @@ -40,6 +40,8 @@ #include <inttypes.h> #endif +#include <stdbool.h> + #if (SIZEOF_INT8_T != 0) #define HAVE_INT8_T #endif diff --git a/src/or/or.h b/src/or/or.h @@ -57,7 +57,6 @@ #ifdef HAVE_TIME_H #include <time.h> #endif -#include <stdbool.h> #ifdef _WIN32 #include <winsock2.h>