blob: 4f67716c124635da7a41d48791b010c19453cb9d [file] [log] [blame]
/*
* sys/stat.h
*/
#ifndef _SYS_STAT_H
#define _SYS_STAT_H
#include <klibc/extern.h>
#include <asm/stat.h>
#include <sys/types.h>
#include <linux/stat.h>
__extern int stat(const char *, struct stat *);
__extern int fstat(int, struct stat *);
__extern int lstat(const char *, struct stat *);
__extern mode_t umask(mode_t);
#endif /* _SYS_STAT_H */