Usermode/libposix - Fixed duplicate definition of uid_t
[tpg/acess2.git] / Usermode / Libraries / libposix.so_src / include_exp / sys / stat.h
index 3e9f430..0340a9f 100644 (file)
@@ -18,9 +18,6 @@ typedef uint64_t      blkcnt_t;
 typedef unsigned int   nlink_t;
 typedef uint32_t       mode_t;
 
-typedef uint32_t       uid_t;
-typedef uint32_t       gid_t;
-
 #define        S_IFMT          0170000 /* type of file */
 #define                S_IFDIR 0040000 /* directory */
 #define                S_IFCHR 0020000 /* character special */
@@ -51,5 +48,6 @@ 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

UCC git Repository :: git.ucc.asn.au