github.com/jgarto/itcv@v0.0.0-20180826224514-4eea09c1aa0d/_vendor/src/golang.org/x/sys/plan9/pwd_plan9.go (about) 1 // Copyright 2015 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // +build !go1.5 6 7 package plan9 8 9 func fixwd() { 10 } 11 12 func Getwd() (wd string, err error) { 13 fd, err := open(".", O_RDONLY) 14 if err != nil { 15 return "", err 16 } 17 defer Close(fd) 18 return Fd2path(fd) 19 } 20 21 func Chdir(path string) error { 22 return chdir(path) 23 }