aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/compat/siphash
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2017-10-03 06:30:17 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2017-10-03 06:41:39 +0200
commitf45345b7723f09c94a829d90689d052c864f5b86 (patch)
treea697ef14c4903691878a7abb401def97bf505cba /src/compat/siphash
parentglobal: satisfy bitshift pedantry (diff)
downloadwireguard-monolithic-historical-f45345b7723f09c94a829d90689d052c864f5b86.tar.xz
wireguard-monolithic-historical-f45345b7723f09c94a829d90689d052c864f5b86.zip
global: use _WG prefix for include guards
Suggested-by: Sultan Alsawaf <sultanxda@gmail.com>
Diffstat (limited to 'src/compat/siphash')
-rw-r--r--src/compat/siphash/include/linux/siphash.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/compat/siphash/include/linux/siphash.h b/src/compat/siphash/include/linux/siphash.h
index fa7a6b9..43aeaa0 100644
--- a/src/compat/siphash/include/linux/siphash.h
+++ b/src/compat/siphash/include/linux/siphash.h
@@ -10,8 +10,8 @@
* hashtables.
*/
-#ifndef _LINUX_SIPHASH_H
-#define _LINUX_SIPHASH_H
+#ifndef _WG_LINUX_SIPHASH_H
+#define _WG_LINUX_SIPHASH_H
#include <linux/types.h>
#include <linux/kernel.h>
@@ -137,4 +137,4 @@ static inline u32 hsiphash(const void *data, size_t len,
return ___hsiphash_aligned(data, len, key);
}
-#endif /* _LINUX_SIPHASH_H */
+#endif /* _WG_LINUX_SIPHASH_H */