diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-10-03 06:30:17 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2017-10-03 06:41:39 +0200 |
commit | 323636085e1a6c063818a697b30e074578db258e (patch) | |
tree | 6b77529769ae29e1deb5523edd3bddc7f03583e5 /src/routingtable.h | |
parent | 452dc76c606d47dc248f846f1202d708a7245f5e (diff) |
global: use _WG prefix for include guards
Suggested-by: Sultan Alsawaf <sultanxda@gmail.com>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/routingtable.h')
-rw-r--r-- | src/routingtable.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/routingtable.h b/src/routingtable.h index 4fdf410..c251354 100644 --- a/src/routingtable.h +++ b/src/routingtable.h @@ -1,7 +1,7 @@ /* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */ -#ifndef ROUTINGTABLE_H -#define ROUTINGTABLE_H +#ifndef _WG_ROUTINGTABLE_H +#define _WG_ROUTINGTABLE_H #include <linux/mutex.h> #include <linux/ip.h> @@ -33,4 +33,4 @@ struct wireguard_peer *routing_table_lookup_src(struct routing_table *table, str bool routing_table_selftest(void); #endif -#endif +#endif /* _WG_ROUTINGTABLE_H */ |