Skip to content

Commit

Permalink
Merge pull request #584 from rgooch/master
Browse files Browse the repository at this point in the history
Final Windoze compile fixes for lib/wsyscall.
  • Loading branch information
rgooch committed Apr 5, 2019
2 parents 74ae41b + 37247b8 commit 9ac493b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/wsyscall/wrappers_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ func setNetNamespace(namespaceFd int) error {
return syscall.ENOTSUP
}

func stat(path string, statbuf *Stat_t) error {
return syscall.ENOTSUP
}

func unshareNetNamespace() (int, int, error) {
return -1, -1, syscall.ENOTSUP
}
Expand Down

0 comments on commit 9ac493b

Please sign in to comment.