diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-20 10:39:07 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-20 10:39:07 -0400 |
commit | 90aeaa53cd3f6cf347cc0629db38079bc90ea80b (patch) | |
tree | b9d6f08153c0222fc100f7972d47d1a8149233e2 /src/or/or.h | |
parent | ae01864b5d3bc8a5e3b069025d9d7972ff1a21c3 (diff) | |
download | tor-90aeaa53cd3f6cf347cc0629db38079bc90ea80b.tar.gz tor-90aeaa53cd3f6cf347cc0629db38079bc90ea80b.zip |
Remove all use of the assert.h header
Nothing in Tor has actually called assert() for some while.
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/or/or.h b/src/or/or.h index dc6d353cd9..33a674d146 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -51,9 +51,6 @@ #ifdef HAVE_ERRNO_H #include <errno.h> #endif -#ifdef HAVE_ASSERT_H -#include <assert.h> -#endif #ifdef HAVE_TIME_H #include <time.h> #endif @@ -3331,4 +3328,3 @@ typedef enum was_router_added_t { typedef struct tor_version_t tor_version_t; #endif /* !defined(TOR_OR_H) */ - |