home *** CD-ROM | disk | FTP | other *** search
- #ifndef CLIB_MACROS_H
- #define CLIB_MACROS_H
- /*
- ** $Filename: clib/macros.h $
- ** $Release: 2.04 Includes, V37.4 $
- ** $Revision: 36.0 $
- ** $Date: 90/11/30 $
- **
- ** C prototypes
- **
- ** (C) Copyright 1990-1991 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 */
-