]> Cypherpunks repositories - gostls13.git/commitdiff
syscall: don't display syscall prototype lines on godoc
authorMikio Hara <mikioh.mikioh@gmail.com>
Mon, 23 Jun 2014 05:33:33 +0000 (14:33 +0900)
committerMikio Hara <mikioh.mikioh@gmail.com>
Mon, 23 Jun 2014 05:33:33 +0000 (14:33 +0900)
LGTM=dave
R=golang-codereviews, dave
CC=golang-codereviews
https://golang.org/cl/110020050

src/pkg/syscall/syscall_bsd.go

index b042841a5bcd496800199acb57f0065d352a2afb..af563910b197c6284e0b8752ed4f5988d1ab29a4 100644 (file)
@@ -498,6 +498,7 @@ func SysctlUint32(name string) (value uint32, err error) {
 }
 
 //sys  utimes(path string, timeval *[2]Timeval) (err error)
+
 func Utimes(path string, tv []Timeval) (err error) {
        if len(tv) != 2 {
                return EINVAL
@@ -521,6 +522,7 @@ func UtimesNano(path string, ts []Timespec) error {
 }
 
 //sys  futimes(fd int, timeval *[2]Timeval) (err error)
+
 func Futimes(fd int, tv []Timeval) (err error) {
        if len(tv) != 2 {
                return EINVAL