From 5adb5ede8ce40823e6d749d3b5cfe645fb785d06 Mon Sep 17 00:00:00 2001 From: "John Hodge (sonata)" Date: Wed, 15 May 2013 10:21:31 +0800 Subject: [PATCH] Usermode/libposix - Fixed duplicate definition of uid_t --- Usermode/Libraries/libposix.so_src/include_exp/sys/stat.h | 7 ------- 1 file changed, 7 deletions(-) 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 */ -- 2.20.1