Changeset 6913 for trunk/include


Ignore:
Timestamp:
Oct 1, 2001, 3:32:58 AM (24 years ago)
Author:
bird
Message:

Watcom: max and min is defined in stdlib.h, undef befor redefining them.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/windef.h

    r6458 r6913  
    114114
    115115#ifndef __export
    116   #define __export   
     116  #define __export
    117117#endif
    118118
     
    567567#define MIN(a,b) (((a) < (b)) ? (a) : (b))
    568568
     569#ifdef __max /* watcom stdlib.h defines this */
     570#undef __max
     571#endif
    569572#define __max(a,b) MAX(a,b)
     573
     574#ifdef __min /* watcom stdlib.h defines this */
     575#undef __min
     576#endif
    570577#define __min(a,b) MIN(a,b)
    571578#ifndef RC_INVOKED
Note: See TracChangeset for help on using the changeset viewer.