diff options
Diffstat (limited to 'libgo/go/path/path_windows.go')
-rw-r--r-- | libgo/go/path/path_windows.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libgo/go/path/path_windows.go b/libgo/go/path/path_windows.go new file mode 100644 index 00000000000..966eb49fb52 --- /dev/null +++ b/libgo/go/path/path_windows.go @@ -0,0 +1,11 @@ +// Copyright 2010 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. + +package path + +const ( + DirSeps = `\/` // directory separators + VolumeSeps = `:` // volume separators + PathSeps = DirSeps + VolumeSeps // all path separators +) |