blob: 0b8ef8d63269474464262ec14e2233fea08151fc [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 int __pad1;
unsigned int __st_ino; /* Not actually filled in */
unsigned int st_mode;
unsigned int st_nlink;
unsigned int st_uid;
unsigned int st_gid;
__stdev64 (st_rdev);
unsigned int __pad2;
signed long long st_size;
signed int st_blksize;
signed long long st_blocks;
struct timespec st_atim;
struct timespec st_mtim;
struct timespec st_ctim;
unsigned long long st_ino;
};
#endif