home *** CD-ROM | disk | FTP | other *** search
- #ifndef CLIB_MACROS_H
- #define CLIB_MACROS_H
- /*
- ** $VER: macros.h 36.0 (30.11.90)
- ** Includes Release 40.15
- **
- ** C prototypes
- **
- ** (C) Copyright 1990-1993 Commodore-Amiga, Inc.
- ** All Rights Reserved
- */
-
- #define MAX(a,b) ((a)>(b)?(a):(b))
- #define MIN(a,b) ((a)<(b)?(a):(b))
- #define ABS(x) ((x<0)?(-(x)):(x))
-
- #endif /* CLIB_MACROS_H */
-