diff options
Diffstat (limited to 'src/os/file_anyos.go')
-rw-r--r-- | src/os/file_anyos.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/os/file_anyos.go b/src/os/file_anyos.go index 4cf2a50eb..74637a1ea 100644 --- a/src/os/file_anyos.go +++ b/src/os/file_anyos.go @@ -21,6 +21,8 @@ var ( Stderr = &File{unixFileHandle(syscall.Stderr), "/dev/stderr"} ) +const DevNull = "/dev/null" + // isOS indicates whether we're running on a real operating system with // filesystem support. const isOS = true |