summaryrefslogtreecommitdiff
path: root/src/syscall/syscall_no_getwd.go
blob: 0080c5ca0f075d4a12a256f5cc460a71e49f2318 (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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 syscall

const ImplementsGetwd = false

func Getwd() (string, error) { return "", ENOTSUP }