aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2023-01-26 09:26:50 -0600
committerJason A. Donenfeld <Jason@zx2c4.com>2023-01-26 09:26:50 -0600
commit16130275d04909c0e52a92c1fa477ac324172845 (patch)
treedae2570db8c9cd0b2da46a5ea736a1efb9301927
parentInitial import from wireguard-go 380ee85 (diff)
downloadwintun-go-16130275d04909c0e52a92c1fa477ac324172845.tar.xz
wintun-go-16130275d04909c0e52a92c1fa477ac324172845.zip
global: move go:build line to top
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--dll.go4
-rw-r--r--session.go4
-rw-r--r--wintun.go4
3 files changed, 6 insertions, 6 deletions
diff --git a/dll.go b/dll.go
index 79ce91a..ba9cad7 100644
--- a/dll.go
+++ b/dll.go
@@ -1,10 +1,10 @@
+//go:build windows
+
/* SPDX-License-Identifier: MIT
*
* Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved.
*/
-//go:build windows
-
package wintun
import (
diff --git a/session.go b/session.go
index ae966ca..45e97a0 100644
--- a/session.go
+++ b/session.go
@@ -1,10 +1,10 @@
+//go:build windows
+
/* SPDX-License-Identifier: MIT
*
* Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved.
*/
-//go:build windows
-
package wintun
import (
diff --git a/wintun.go b/wintun.go
index 404a2ff..254dc1e 100644
--- a/wintun.go
+++ b/wintun.go
@@ -1,10 +1,10 @@
+//go:build windows
+
/* SPDX-License-Identifier: MIT
*
* Copyright (C) 2017-2021 WireGuard LLC. All Rights Reserved.
*/
-//go:build windows
-
package wintun
import (