From f45345b7723f09c94a829d90689d052c864f5b86 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 3 Oct 2017 06:30:17 +0200 Subject: global: use _WG prefix for include guards Suggested-by: Sultan Alsawaf --- src/hashtables.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/hashtables.h') diff --git a/src/hashtables.h b/src/hashtables.h index e12bfd6..55f608a 100644 --- a/src/hashtables.h +++ b/src/hashtables.h @@ -1,7 +1,7 @@ /* Copyright (C) 2015-2017 Jason A. Donenfeld . All Rights Reserved. */ -#ifndef HASHTABLES_H -#define HASHTABLES_H +#ifndef _WG_HASHTABLES_H +#define _WG_HASHTABLES_H #include "messages.h" @@ -46,4 +46,4 @@ bool index_hashtable_replace(struct index_hashtable *table, struct index_hashtab void index_hashtable_remove(struct index_hashtable *table, struct index_hashtable_entry *entry); struct index_hashtable_entry *index_hashtable_lookup(struct index_hashtable *table, const enum index_hashtable_type type_mask, const __le32 index); -#endif +#endif /* _WG_HASHTABLES_H */ -- cgit v1.2.3-59-g8ed1b