X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fhash.h;h=a5ae2e9d42d037225a14918b48e6c1ce3df286f3;hp=30a15fb270ca0e5bc8eaedee620bc3abf9cf0cf0;hb=5822f817aa802c2c5a83e9d99a8ae78cb822799b;hpb=3465746b9bf75124b21eab21cdf390696b608405 diff --git a/src/hash.h b/src/hash.h index 30a15fb2..a5ae2e9d 100644 --- a/src/hash.h +++ b/src/hash.h @@ -1,3 +1,6 @@ +#ifndef TINC_HASH_H +#define TINC_HASH_H + /* hash.h -- header file for hash.c Copyright (C) 2012 Guus Sliepen @@ -17,9 +20,6 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef __TINC_HASH_H__ -#define __TINC_HASH_H__ - typedef struct hash_t { size_t n; size_t size; @@ -39,4 +39,4 @@ extern void *hash_search_or_insert(hash_t *, const void *key, const void *value) extern void hash_clear(hash_t *); extern void hash_resize(hash_t *, size_t n); -#endif /* __TINC_HASH_H__ */ +#endif