X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibposix.so_src%2Finclude_exp%2Fsys%2Fstat.h;h=be5ceb34218b3ff6b4e4d1b59263e4d1ba28fd86;hb=465311d5855b475500e2568a69f72ae5f3c5c6d7;hp=99c526b2a6b758366f68ed04ff84f24e24eb7135;hpb=52fad670ab81459de0ff1bd0fa99a3396a6999e3;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libposix.so_src/include_exp/sys/stat.h b/Usermode/Libraries/libposix.so_src/include_exp/sys/stat.h index 99c526b2..be5ceb34 100644 --- a/Usermode/Libraries/libposix.so_src/include_exp/sys/stat.h +++ b/Usermode/Libraries/libposix.so_src/include_exp/sys/stat.h @@ -1,12 +1,13 @@ /* - * Acess2 C Library + * Acess2 POSIX Emulation Lib * - By John Hodge (thePowersGang) + * + * sys/stat.h + * - stat(2) */ #ifndef _SYS_STAT_H_ #define _SYS_STAT_H_ -//#include "../acess/intdefs.h" /* Evil */ -//#include "../stddef.h" #include #include "sys/types.h" // off_t @@ -17,8 +18,12 @@ typedef uint64_t blkcnt_t; typedef unsigned int nlink_t; typedef uint32_t mode_t; +#ifndef uid_t typedef uint32_t uid_t; +#endif +#ifndef gid_t typedef uint32_t gid_t; +#endif #define S_IFMT 0170000 /* type of file */ #define S_IFDIR 0040000 /* directory */ @@ -48,6 +53,8 @@ struct stat }; extern int stat(const char *path, struct stat *buf); +extern int lstat(const char *path, struct stat *buf); extern int fstat(int fd, struct stat *buf); +extern int mkdir(const char *pathname, mode_t mode); #endif