Get rid of the warning about ignoring the return value of fgets
[cloog.git] / test / openscop / coordinates.c
bloba584f04538bcadc3b739a69d948f5c5127e219c4
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))
7 #ifdef TIME
8 #define IF_TIME(foo) foo;
9 #else
10 #define IF_TIME(foo)
11 #endif
14 for (i=0;i<=41;i++) {
15 S1(i);