Skip to content
Snippets Groups Projects
Commit bc98f6a0 authored by Paul Sajna's avatar Paul Sajna
Browse files

git rm include/sys/stat.h

parent 76c4520c
No related branches found
No related tags found
1 merge request!69stat is now autogenerated correctly
#ifndef _STAT_H
#define _STAT_H
#include <sys/types.h>
struct stat {
dev_t st_dev;
ino_t st_ino;
nlink_t st_nlink;
mode_t st_mode;
uid_t st_uid;
gid_t st_gid;
dev_t st_rdev;
off_t st_size;
blksize_t st_blksize;
time_t st_atim;
time_t st_mtim;
time_t st_ctim;
};
int chmod(const char *path, mode_t mode);
int fchmod(int fildes, mode_t mode);
int fstat(int fildes, struct stat *buf);
int lstat(const char *path, struct stat *buf);
int mkdir(const char *path, mode_t mode);
int mkfifo(const char *path, mode_t mode);
int mknod(const char *path, mode_t mode, dev_t dev);
int stat(const char *file, struct stat *buf);
mode_t umask(mode_t mask);
#endif /* _STAT_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment