summaryrefslogtreecommitdiff
path: root/src/syscall/syscall.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/syscall/syscall.go')
-rw-r--r--src/syscall/syscall.go8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/syscall/syscall.go b/src/syscall/syscall.go
index 8475001a7..7f31c11c9 100644
--- a/src/syscall/syscall.go
+++ b/src/syscall/syscall.go
@@ -8,10 +8,6 @@ package syscall
* Foundation of system call interface.
*/
-func Syscall(trap int64, a1, a2, a3 int64) (r1, r2, err int64);
-func AddrToInt(b *byte) int64;
-
-export Syscall
-export AddrToInt
-
+export func Syscall(trap int64, a1, a2, a3 int64) (r1, r2, err int64);
+export func AddrToInt(b *byte) int64;