home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / useful / os-include / clib / macros.h < prev    next >
C/C++ Source or Header  |  1992-09-24  |  352b  |  18 lines

  1. #ifndef CLIB_MACROS_H
  2. #define CLIB_MACROS_H
  3. /*
  4. **    $VER: macros.h 36.0 (30.11.90)
  5. **    Includes Release 39.108
  6. **
  7. **    C prototypes
  8. **
  9. **    (C) Copyright 1990-1992 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #define MAX(a,b)    ((a)>(b)?(a):(b))
  14. #define MIN(a,b)    ((a)<(b)?(a):(b))
  15. #define ABS(x)        ((x<0)?(-(x)):(x))
  16.  
  17. #endif    /* CLIB_MACROS_H */
  18.