25 lines
442 B
Go
25 lines
442 B
Go
// Copyright 2023 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.
|
|
|
|
//go:build wasip1
|
|
|
|
package syscall
|
|
|
|
type Stat_t struct {
|
|
Dev uint64
|
|
Ino uint64
|
|
Filetype uint8
|
|
Nlink uint64
|
|
Size uint64
|
|
Atime uint64
|
|
Mtime uint64
|
|
Ctime uint64
|
|
|
|
Mode int
|
|
|
|
// Uid and Gid are always zero on wasip1 platforms
|
|
Uid uint32
|
|
Gid uint32
|
|
}
|