mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 08:13:18 +00:00
5653939481
Added support for NOMINMAX. Remove __min/__max from windef.h, they belong to (msvcrt/)stdlib.h.
17 lines
270 B
C
17 lines
270 B
C
/*
|
|
* min/max macros
|
|
*
|
|
* Copyright 2001 Francois Gouget
|
|
*/
|
|
|
|
#ifndef __WINE_MINMAX_H
|
|
#define __WINE_MINMAX_H
|
|
|
|
#ifndef max
|
|
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
|
#endif
|
|
#ifndef min
|
|
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
|
#endif
|
|
|
|
#endif /* __WINE_MINMAX_H */
|