diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-05-14 22:08:42 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2012-05-14 22:08:42 +0000 |
commit | f3ab5720f7ce7835a905e6783b5b6720676331fb (patch) | |
tree | b119ee23a08a92b43632e3c7e227b3862c869fba /libgo/go/syscall/errno.c | |
parent | 517f1b3430f929a25694d29dc787ec33e2cbd47f (diff) | |
download | gcc-f3ab5720f7ce7835a905e6783b5b6720676331fb.zip gcc-f3ab5720f7ce7835a905e6783b5b6720676331fb.tar.gz gcc-f3ab5720f7ce7835a905e6783b5b6720676331fb.tar.bz2 |
libgo: Use -fgo-pkgpath.
From-SVN: r187485
Diffstat (limited to 'libgo/go/syscall/errno.c')
-rw-r--r-- | libgo/go/syscall/errno.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/syscall/errno.c b/libgo/go/syscall/errno.c index 8e57811..d01f4c9 100644 --- a/libgo/go/syscall/errno.c +++ b/libgo/go/syscall/errno.c @@ -10,8 +10,8 @@ /* errno is typically a macro. These functions set and get errno specific to the libc being used. */ -uintptr_t GetErrno() asm ("libgo_syscall.syscall.GetErrno"); -void SetErrno(uintptr_t) asm ("libgo_syscall.syscall.SetErrno"); +uintptr_t GetErrno() asm ("syscall.GetErrno"); +void SetErrno(uintptr_t) asm ("syscall.SetErrno"); uintptr_t GetErrno() |