diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-10-12 12:11:54 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-10-12 12:11:54 -0400 |
commit | d7b79bf020fbf26330048e76c7a2606363ed0de9 (patch) | |
tree | d55aaf9f5cae4a3f4d85e78c998b3950daeef9fa /src/ext/ht.h | |
parent | 0d9c336a878c8518a59522a1b811ea32f1edbb83 (diff) | |
download | tor-d7b79bf020fbf26330048e76c7a2606363ed0de9.tar.gz tor-d7b79bf020fbf26330048e76c7a2606363ed0de9.zip |
Clean up reserved identifier usage in src/ext include guards
Diffstat (limited to 'src/ext/ht.h')
-rw-r--r-- | src/ext/ht.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ext/ht.h b/src/ext/ht.h index 25156c4165..385aff2a9b 100644 --- a/src/ext/ht.h +++ b/src/ext/ht.h @@ -5,8 +5,8 @@ /* Based on ideas by Christopher Clark and interfaces from Niels Provos. */ -#ifndef _TOR_HT_H -#define _TOR_HT_H +#ifndef HT_H_INCLUDED_ +#define HT_H_INCLUDED_ #define HT_HEAD(name, type) \ struct name { \ |