diff options
author | 2021-09-08 20:22:24 +0100 | |
---|---|---|
committer | 2021-09-08 20:22:24 +0100 | |
commit | 299801f299737364cdd3e5a526bd40df5c48ca93 (patch) | |
tree | 2d0926cdcf3088781842a83fd8ed50593006ccc2 /vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go | |
parent | rework media processing a little bit (#191) (diff) | |
parent | update bun library -> v1.0.4 (diff) | |
download | gotosocial-299801f299737364cdd3e5a526bd40df5c48ca93.tar.xz |
Merge pull request #195 from NyaaaWhatsUpDoc/update/bun-library
update bun library -> v1.0.4
Diffstat (limited to 'vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go')
-rw-r--r-- | vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go b/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go index da8ec0396..a289e993b 100644 --- a/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go +++ b/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go @@ -191,17 +191,6 @@ func Getuid() (uid int) { // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT -func InotifyInit() (fd int, err error) { - r0, _, e1 := RawSyscall(SYS_INOTIFY_INIT, 0, 0, 0) - fd = int(r0) - if e1 != 0 { - err = errnoErr(e1) - } - return -} - -// THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT - func Ioperm(from int, num int, on int) (err error) { _, _, e1 := Syscall(SYS_IOPERM, uintptr(from), uintptr(num), uintptr(on)) if e1 != 0 { |