home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
Misc
/
TRSICAT.LZX
/
CATS_CD2_TRSI
/
Inc&AD2.1
/
includes
/
clib
/
macros.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1992-09-11
|
351 b
|
18 lines
#ifndef CLIB_MACROS_H
#define CLIB_MACROS_H
/*
** $VER: macros.h 36.0 (30.11.90)
** Includes Release 38.56
**
** C prototypes
**
** (C) Copyright 1990-1992 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 */