Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
438 B

/**
Unit: Tape Format
Name: minmax.h
Description: "Inline" functions (macros) for min, max
$Log: N:/LOGFILES/MINMAX.H_V $
Rev 1.0 10 Dec 1991 16:59:56 GREGG
Initial revision.
**/
#if !defined( _MINMAX_H )
#define _MINMAX_H
#if !defined( MIN )
#define MIN(a,b) (((a)<(b))?(a):(b))
#endif
#if !defined( MAX )
#define MAX(a,b) (((a)>(b))?(a):(b))
#endif
#endif /* _MINMAX_H */