aboutsummaryrefslogtreecommitdiff
path: root/src/net/hook_cloexec.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/hook_cloexec.go')
-rw-r--r--src/net/hook_cloexec.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/net/hook_cloexec.go b/src/net/hook_cloexec.go
deleted file mode 100644
index 870f0d78b1..0000000000
--- a/src/net/hook_cloexec.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2015 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-// +build freebsd linux
-
-package net
-
-import "syscall"
-
-var (
- // Placeholders for socket system calls.
- accept4Func func(int, int) (int, syscall.Sockaddr, error) = syscall.Accept4
-)