diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-10-12 12:08:05 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-10-12 12:08:53 -0400 |
commit | 0d9c336a878c8518a59522a1b811ea32f1edbb83 (patch) | |
tree | b74f4ff135c9a88c4f181a9ac80ff73dce5d49c6 | |
parent | 8586611718ee9c4cc81eb8fe50c937619393ade6 (diff) | |
download | tor-0d9c336a878c8518a59522a1b811ea32f1edbb83.tar.gz tor-0d9c336a878c8518a59522a1b811ea32f1edbb83.zip |
Add guard macro for eventdns_tor.h
-rw-r--r-- | src/or/eventdns_tor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/or/eventdns_tor.h b/src/or/eventdns_tor.h index 4c40b3524b..f7a2d702cf 100644 --- a/src/or/eventdns_tor.h +++ b/src/or/eventdns_tor.h @@ -1,6 +1,9 @@ /* Copyright (c) 2007-2012, The Tor Project, Inc. */ /* See LICENSE for licensing information */ +#ifndef TOR_EVENTDNS_TOR_H +#define TOR_EVENTDNS_TOR_H + #include "orconfig.h" #define DNS_USE_OPENSSL_FOR_ID #ifndef HAVE_UINT @@ -18,3 +21,4 @@ typedef unsigned char u_char; #include "util.h" #include "compat.h" +#endif |