Clean up reserved identifier usage in src/ext include guards

This commit is contained in:
Nick Mathewson 2012-10-12 12:11:54 -04:00
parent 0d9c336a87
commit d7b79bf020
2 changed files with 4 additions and 4 deletions

View File

@ -209,8 +209,8 @@
* with the next probe.
*/
#ifndef _TOR_EVENTDNS_H
#define _TOR_EVENTDNS_H
#ifndef TOR_EVENTDNS_H
#define TOR_EVENTDNS_H
/* Error codes 0-5 are as described in RFC 1035. */
#define DNS_ERR_NONE 0

View File

@ -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 { \