summaryrefslogtreecommitdiff
path: root/libgo/go/os/types_unix.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/os/types_unix.go')
-rw-r--r--libgo/go/os/types_unix.go27
1 files changed, 27 insertions, 0 deletions
diff --git a/libgo/go/os/types_unix.go b/libgo/go/os/types_unix.go
new file mode 100644
index 00000000000..056220c09b6
--- /dev/null
+++ b/libgo/go/os/types_unix.go
@@ -0,0 +1,27 @@
+// Copyright 2009 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 !windows
+// +build !plan9
+
+package os
+
+import (
+ "syscall"
+ "time"
+)
+
+// A fileStat is the implementation of FileInfo returned by Stat and Lstat.
+type fileStat struct {
+ name string
+ size int64
+ mode FileMode
+ modTime time.Time
+ sys syscall.Stat_t
+}
+
+func (fs *fileStat) Size() int64 { return fs.size }
+func (fs *fileStat) Mode() FileMode { return fs.mode }
+func (fs *fileStat) ModTime() time.Time { return fs.modTime }
+func (fs *fileStat) Sys() interface{} { return &fs.sys }