Luna/libc/include/bits/struct_stat.h
apio 1094042a7d
Some checks failed
continuous-integration/drone/push Build is failing
kernel: Implement st_dev and st_rdev
2023-05-23 20:45:24 +02:00

21 lines
305 B
C

/* bits/struct_stat.h: The stat structure. */
#ifndef _BITS_STRUCT_STAT_H
#define _BITS_STRUCT_STAT_H
#include <sys/types.h>
struct stat
{
ino_t st_ino;
mode_t st_mode;
nlink_t st_nlink;
dev_t st_dev;
uid_t st_uid;
gid_t st_gid;
off_t st_size;
dev_t st_rdev;
};
#endif