syscalls/sleep_rtems.go: Add missing package clause.

From-SVN: r169183
This commit is contained in:
Ian Lance Taylor 2011-01-24 22:44:52 +00:00
parent 2b6e2d13ff
commit 71c67403a2
1 changed files with 2 additions and 0 deletions

View 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) {