OSDN Git Service

syscalls/sleep_rtems.go: Add missing package clause.
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 24 Jan 2011 22:44:52 +0000 (22:44 +0000)
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 24 Jan 2011 22:44:52 +0000 (22:44 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@169183 138bc75d-0d04-0410-961f-82ee72b054a4

libgo/syscalls/sleep_rtems.go

index 443e850..8a9ae8a 100644 (file)
@@ -4,6 +4,8 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
+package syscall
+
 func libc_nanosleep(req *Timespec, rem *Timespec) int __asm__ ("nanosleep")
 
 func Sleep(nsec int64) (errno int) {