diff options
author | Niels Provos <provos@cvs.openbsd.org> | 2000-06-16 21:47:20 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 2000-06-16 21:47:20 +0000 |
commit | 73501d656ca05164437c542734297118885750b9 (patch) | |
tree | 67425e428d72378b157a1a44f8f1839fddf27877 /sys/dev/ic/aic7xxxvar.h | |
parent | 5042942398fd5fe3553c7eb71e912f3412f22eb5 (diff) |
take MIN/MAX from param.h, okay theo@
Diffstat (limited to 'sys/dev/ic/aic7xxxvar.h')
-rw-r--r-- | sys/dev/ic/aic7xxxvar.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/dev/ic/aic7xxxvar.h b/sys/dev/ic/aic7xxxvar.h index ae510913bec..0bd400f3ad2 100644 --- a/sys/dev/ic/aic7xxxvar.h +++ b/sys/dev/ic/aic7xxxvar.h @@ -31,20 +31,12 @@ * SUCH DAMAGE. * * $FreeBSD: src/sys/dev/aic7xxx/aic7xxx.h,v 1.15 2000/01/07 23:08:18 gibbs Exp $ - * $OpenBSD: aic7xxxvar.h,v 1.11 2000/03/22 02:48:47 smurph Exp $ + * $OpenBSD: aic7xxxvar.h,v 1.12 2000/06/16 21:47:13 provos Exp $ */ #ifndef _AIC7XXXVAR_H_ #define _AIC7XXXVAR_H_ -#ifndef MAX -#define MAX(a,b) (((a) > (b)) ? (a) : (b)) -#endif - -#ifndef MIN -#define MIN(a,b) (((a) < (b)) ? (a) : (b)) -#endif - #ifndef FALSE #define FALSE 0 #endif |