home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 4
/
FreshFish_May-June1994.bin
/
gnu
/
os-include
/
clib
/
macros.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-10-15
|
351b
|
18 lines
#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 */