From: Ian Lance Taylor Date: Mon, 24 Jan 2011 22:44:52 +0000 (+0000) Subject: syscalls/sleep_rtems.go: Add missing package clause. X-Git-Tag: releases/gcc-4.6.0~1026 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=71c67403a2faf26b64c2bf525e392953a2707aa3;p=thirdparty%2Fgcc.git syscalls/sleep_rtems.go: Add missing package clause. From-SVN: r169183 --- diff --git a/libgo/syscalls/sleep_rtems.go b/libgo/syscalls/sleep_rtems.go index 443e8508edce..8a9ae8a30fea 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) {