View | Details | Raw Unified | Return to issue 1215
Collapse All | Expand All

(-)tools/inc/solar.h (+2 lines)
Lines 397-402 Link Here
397
#define SWAPLONG(x)  ((((x) >> 24) & 0x000000FF) | (((x) & 0x00FF0000) >> 8) | \
397
#define SWAPLONG(x)  ((((x) >> 24) & 0x000000FF) | (((x) & 0x00FF0000) >> 8) | \
398
					  (((x) & 0x0000FF00) <<  8) | (((x) & 0x000000FF) << 24))
398
					  (((x) & 0x0000FF00) <<  8) | (((x) & 0x000000FF) << 24))
399
399
400
#ifndef __cplusplus
400
#ifndef min
401
#ifndef min
401
#define min(a,b)	(((a) < (b)) ? (a) : (b))
402
#define min(a,b)	(((a) < (b)) ? (a) : (b))
402
#endif
403
#endif
Lines 407-412 Link Here
407
408
408
#ifdef BLC
409
#ifdef BLC
409
#define __MINMAX_DEFINED
410
#define __MINMAX_DEFINED
411
#endif
410
#endif
412
#endif
411
#endif
413
#endif
412
414

Return to issue 1215