17 lines
241 B
C
17 lines
241 B
C
|
/* sys/param.h: Old-style BSD macros. */
|
||
|
|
||
|
#ifndef _SYS_PARAM_H
|
||
|
#define _SYS_PARAM_H
|
||
|
|
||
|
#include <limits.h>
|
||
|
|
||
|
#ifndef MIN
|
||
|
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
|
||
|
#endif
|
||
|
|
||
|
#ifndef MAX
|
||
|
#define MAX(a, b) (((a) > (b)) ? (a) : (b))
|
||
|
#endif
|
||
|
|
||
|
#endif
|