1
0
mirror of https://github.com/golang/go synced 2024-10-04 20:21:22 -06:00
go/src/pkg/syscall/syscall_no_getwd.go
2013-08-05 12:26:05 -07:00

12 lines
294 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 freebsd netbsd openbsd
package syscall
const ImplementsGetwd = false
func Getwd() (string, error) { return "", ENOTSUP }