mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
Take care of some warnings and remove a unused header in finger
svn path=/trunk/; revision=2574
This commit is contained in:
parent
b80ba17572
commit
c8abcc5cb4
2 changed files with 2 additions and 0 deletions
|
@ -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))
|
||||
|
||||
|
|
Loading…
Reference in a new issue