1
0
mirror of https://github.com/golang/go synced 2024-11-22 00:44:39 -07:00

os: be explicit in the package comment that this package is for portable features only.

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/4602058
This commit is contained in:
Rob Pike 2011-06-14 11:49:33 +10:00
parent 2769356dda
commit 34e0725dec

View File

@ -4,6 +4,8 @@
// Package os provides a platform-independent interface to operating system
// functionality. The design is Unix-like.
// The os interface is intended to be uniform across all operating systems.
// Features not generally available appear in the system-specific package syscall.
package os
import (