mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
34 lines
808 B
C
Vendored
34 lines
808 B
C
Vendored
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
/*
|
|
* S390 version
|
|
*
|
|
* Derived from "include/asm-i386/stat.h"
|
|
*/
|
|
|
|
#ifndef _S390_STAT_H
|
|
#define _S390_STAT_H
|
|
|
|
struct stat {
|
|
unsigned long st_dev;
|
|
unsigned long st_ino;
|
|
unsigned long st_nlink;
|
|
unsigned int st_mode;
|
|
unsigned int st_uid;
|
|
unsigned int st_gid;
|
|
unsigned int __pad1;
|
|
unsigned long st_rdev;
|
|
unsigned long st_size;
|
|
unsigned long st_atime;
|
|
unsigned long st_atime_nsec;
|
|
unsigned long st_mtime;
|
|
unsigned long st_mtime_nsec;
|
|
unsigned long st_ctime;
|
|
unsigned long st_ctime_nsec;
|
|
unsigned long st_blksize;
|
|
long st_blocks;
|
|
unsigned long __unused[3];
|
|
};
|
|
|
|
#define STAT_HAVE_NSEC 1
|
|
|
|
#endif |