Get rid of the warning about ignoring the return value of fgets
[cloog.git] / test / openscop / empty.c
blob00acb0d53dd2b94523a0647a26efa102b7dd638f
1 /* Generated from ./openscop/empty.scop by CLooG 0.18.3 gmp bits in 0.00s. */
2 /* Useful macros. */
3 #define floord(n,d) (((n)<0) ? -((-(n)+(d)-1)/(d)) : (n)/(d))
4 #define ceild(n,d) (((n)<0) ? -((-(n))/(d)) : ((n)+(d)-1)/(d))
5 #define max(x,y) ((x) > (y) ? (x) : (y))
6 #define min(x,y) ((x) < (y) ? (x) : (y))
8 #ifdef TIME
9 #define IF_TIME(foo) foo;
10 #else
11 #define IF_TIME(foo)
12 #endif