repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Replaced Popscren with a custom pop-up list for selecting public screen. Now it conta...
[tangerine.git]
/
compiler
/
include
/
clib
/
macros.h
blob
7eaa256a3cc5fa775a8bae838b6dbc6780d353f4
1
#ifndef CLIB_MACROS_H
2
#define CLIB_MACROS_H
3
4
/*
5
Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6
$Id$
7
8
Desc: C macros
9
Lang: english
10
*/
11
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))
15
16
#endif
/* CLIB_MACROS_H */