OSDN Git Service

Implement new syscall package.
[pf3gnuchains/gcc-fork.git] / libgo / go / syscall / errno.c
similarity index 78%
rename from libgo/syscalls/errno.c
rename to libgo/go/syscall/errno.c
index 34771a0..854b5aa 100644 (file)
@@ -9,8 +9,8 @@
 /* errno is typically a macro. These functions set 
    and get errno specific to the libc being used.  */
 
-int GetErrno() asm ("libgo_syscalls.syscall.GetErrno");
-void SetErrno(int) asm ("libgo_syscalls.syscall.SetErrno");
+int GetErrno() asm ("libgo_syscall.syscall.GetErrno");
+void SetErrno(int) asm ("libgo_syscall.syscall.SetErrno");
 
 int 
 GetErrno()