Changeset 1629

Show
Ignore:
Timestamp:
06/21/08 15:01:45 (2 months ago)
Author:
dp
Message:

redefinition guards

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • libemu/trunk/include/emu/emu.h

    r1317 r1629  
    3232#include <stdint.h> 
    3333 
    34 #define        MIN(a,b) (((a)<(b))?(a):(b)) 
    35 #define        MAX(a,b) (((a)>(b))?(a):(b)) 
     34#ifndef MIN 
     35        #define        MIN(a,b) (((a)<(b))?(a):(b)) 
     36#endif 
     37 
     38#ifndef MAX 
     39        #define        MAX(a,b) (((a)>(b))?(a):(b)) 
     40#endif 
    3641 
    3742