mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-11-24 12:54:02 +08:00
cf79b1117b
Add blank lines after //sys comments where needed, and then run gofmt on the syscall package with the new formatter. This is the libgo version of CL 407136. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/412074
12 lines
518 B
Go
12 lines
518 B
Go
// Copyright 2019 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.
|
|
|
|
//go:build darwin || dragonfly || freebsd || openbsd || (solaris && amd64) || (solaris && sparc64)
|
|
// +build darwin dragonfly freebsd openbsd solaris,amd64 solaris,sparc64
|
|
|
|
package syscall
|
|
|
|
//sys sendfile(outfd int, infd int, offset *Offset_t, count int) (written int, err error)
|
|
//sendfile(outfd _C_int, infd _C_int, offset *Offset_t, count Size_t) Ssize_t
|