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