mirror of
https://github.com/reactos/reactos.git
synced 2026-06-05 03:02:59 +08:00
Take care of some warnings and remove a unused header in finger
svn path=/trunk/; revision=2574
This commit is contained in:
@@ -33,6 +33,8 @@ typedef long uid_t; // SunOS 5.5
|
||||
#define S_ISREG(mode) (((mode)&0xF000) == 0x8000)
|
||||
#define S_ISDIR(mode) (((mode)&0xF000) == 0x4000)
|
||||
|
||||
#undef MIN //take care of windows default
|
||||
#undef MAX //take care of windows default
|
||||
#define MIN(a, b) ((a) <= (b) ? (a) : (b))
|
||||
#define MAX(a, b) ((a) > (b) ? (a) : (b))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user