mirror of
https://github.com/golang/sys.git
synced 2026-02-08 19:56:04 +03:00
Semi-automatic migration from package syscall to package {plan9,windows,unix}.
No builds attempted yet, but this gets a lot of noise behind us so subsequent
CLs will be more concise and easier to follow.
Subsequent CLs will have semantic content.
LGTM=rsc
R=golang-codereviews, rsc
CC=golang-codereviews
https://golang.org/cl/121520043
12 lines
301 B
Go
12 lines
301 B
Go
// Copyright 2013 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build dragonfly freebsd netbsd openbsd
|
|
|
|
package unix
|
|
|
|
const ImplementsGetwd = false
|
|
|
|
func Getwd() (string, error) { return "", ENOTSUP }
|