Preparations for release.
[AROS.git] / compiler / include / clib / macros.h
blob7eaa256a3cc5fa775a8bae838b6dbc6780d353f4
1 #ifndef CLIB_MACROS_H
2 #define CLIB_MACROS_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: C macros
9 Lang: english
12 #define MIN(x,y) ((x)<(y)?(x):(y))
13 #define MAX(x,y) ((x)>(y)?(x):(y))
14 #define ABS(x) (((x)<0)?(-(x)):(x))
16 #endif /* CLIB_MACROS_H */