Update dependencies

This commit is contained in:
Ken-Håvard Lieng 2018-12-31 02:20:22 +01:00
parent 95eff71e2e
commit 67e32661f1
91 changed files with 18205 additions and 4938 deletions

View file

@ -94,6 +94,13 @@ func Getwd() (string, error) {
return string(buf[:n]), nil
}
func Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
if raceenabled {
raceReleaseMerge(unsafe.Pointer(&ioSync))
}
return sendfile(outfd, infd, offset, count)
}
// TODO
func sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
return -1, ENOSYS