aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/crypto/siphash24.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/crypto/siphash24.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto/siphash24.c b/src/crypto/siphash24.c
index 6a22ca0..1203d90 100644
--- a/src/crypto/siphash24.c
+++ b/src/crypto/siphash24.c
@@ -1,7 +1,7 @@
/* Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
-#include "../wireguard.h"
#include "siphash24.h"
+
#include <linux/kernel.h>
#define ROTL(x,b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b))))