summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2016-12-30 17:53:05 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2016-12-30 17:53:05 +0100
commit3955355f7ea29bbe47bb74d7deada6c90ddf209e (patch)
tree99badfa55113ecdb3d293a5db9cff27cbb53e3c6 /src/tools
parentwg-config: use ip rules instead of tungate (diff)
downloadwireguard-monolithic-historical-3955355f7ea29bbe47bb74d7deada6c90ddf209e.tar.xz
wireguard-monolithic-historical-3955355f7ea29bbe47bb74d7deada6c90ddf209e.zip
tools: syscall.h should actually be sys/syscall.h
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/genkey.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/genkey.c b/src/tools/genkey.c
index d029527..0bdcfbb 100644
--- a/src/tools/genkey.c
+++ b/src/tools/genkey.c
@@ -8,7 +8,7 @@
#include <string.h>
#include <fcntl.h>
#ifdef __linux
-#include <syscall.h>
+#include <sys/syscall.h>
#endif
#include "curve25519.h"