From 71c67403a2faf26b64c2bf525e392953a2707aa3 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 24 Jan 2011 22:44:52 +0000 Subject: [PATCH] syscalls/sleep_rtems.go: Add missing package clause. From-SVN: r169183 --- libgo/syscalls/sleep_rtems.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libgo/syscalls/sleep_rtems.go b/libgo/syscalls/sleep_rtems.go index 443e8508edc..8a9ae8a30fe 100644 --- a/libgo/syscalls/sleep_rtems.go +++ b/libgo/syscalls/sleep_rtems.go @@ -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) {