blob: 1319e6b7095f0a7bb7bf3be5b6c674cf1cbf11b7 [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;
unsigned long st_nlink;
unsigned int st_mode;
unsigned int st_uid;
unsigned int st_gid;
unsigned int __pad1;
__stdev64 (st_rdev);
unsigned long st_size;
struct timespec st_atim;
struct timespec st_mtim;
struct timespec st_ctim;
unsigned long st_blksize;
long st_blocks;
unsigned long __unused[3];
};
#endif