home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 5
/
FreshFish_July-August1994.bin
/
useful
/
dist
/
cbm
/
v37
/
include
/
clib
/
macros.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-11-27
|
399b
|
20 lines
#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 */