Fix "PR c++/92804 ICE trying to use concept as a nested-name-specifier"
[official-gcc.git] / libgo / go / syscall / syscall_funcs_stubs.go
blobc68ab267dd048e8447531c937605b6832f5a72bf
1 // Copyright 2010 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // +build aix rtems
7 // These are stubs.
9 package syscall
11 func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) {
12 z := -1
13 return uintptr(z), 0, ENOSYS
16 func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno) {
17 z := -1
18 return uintptr(z), 0, ENOSYS
21 func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) {
22 z := -1
23 return uintptr(z), 0, ENOSYS
26 func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno) {
27 z := -1
28 return uintptr(z), 0, ENOSYS