blob: 66e29be343a389248e57f2fb407dd83601d37011 [file] [log] [blame]
#ifndef _KLIBC_ARCHSTAT_H
#define _KLIBC_ARCHSTAT_H
#include <klibc/stathelp.h>
#define _STATBUF_ST_NSEC
struct stat {
__stdev64 (st_dev);
unsigned long st_ino;
__stdev64 (st_rdev);
long st_size;
unsigned long st_blocks;
unsigned int st_mode;
unsigned int st_uid;
unsigned int st_gid;
unsigned int st_blksize;
unsigned int st_nlink;
unsigned int __pad0;
struct timespec st_atim;
struct timespec st_mtim;
struct timespec st_ctim;
long __unused[3];
};
#endif