repo.or.cz
/
cloog.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Prevent iterator redefinition
[cloog.git]
/
test
/
openscop
/
coordinates.c
blob
a584f04538bcadc3b739a69d948f5c5127e219c4
1
/* Useful macros. */
2
#define floord(n,d) (((n)<0) ? -((-(n)+(d)-1)/(d)) : (n)/(d))
3
#define ceild(n,d) (((n)<0) ? -((-(n))/(d)) : ((n)+(d)-1)/(d))
4
#define max(x,y) ((x) > (y) ? (x) : (y))
5
#define min(x,y) ((x) < (y) ? (x) : (y))
6
7
#ifdef TIME
8
#define IF_TIME(foo) foo;
9
#else
10
#define IF_TIME(foo)
11
#endif
12
13
14
for
(
i
=
0
;
i
<=
41
;
i
++) {
15
S1
(
i
);
16
}