diff options
Diffstat (limited to 'src/nginext/cbytes-1.6.go')
-rw-r--r-- | src/nginext/cbytes-1.6.go | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/nginext/cbytes-1.6.go b/src/nginext/cbytes-1.6.go deleted file mode 100644 index 7686dad8..00000000 --- a/src/nginext/cbytes-1.6.go +++ /dev/null @@ -1,15 +0,0 @@ -// +build !go1.7 - -/* - * Copyright (C) Max Romanov - * Copyright (C) NGINX, Inc. - */ - -package nginext - -import "C" -import "unsafe" - -func getCBytes(p []byte) unsafe.Pointer { - return unsafe.Pointer(C.CString(string(p))) // go <= 1.6 -} |