From: John Hodge (sonata) Date: Wed, 15 May 2013 02:21:31 +0000 (+0800) Subject: Usermode/libposix - Fixed duplicate definition of uid_t X-Git-Tag: rel0.15~481 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=5adb5ede8ce40823e6d749d3b5cfe645fb785d06;p=tpg%2Facess2.git Usermode/libposix - Fixed duplicate definition of uid_t --- 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 be5ceb34..0340a9fc 100644 --- a/Usermode/Libraries/libposix.so_src/include_exp/sys/stat.h +++ b/Usermode/Libraries/libposix.so_src/include_exp/sys/stat.h @@ -18,13 +18,6 @@ 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 */ #define S_IFCHR 0020000 /* character special */