#include #include #ifdef FOO #define EVEN(x) !(x%2) #endif #ifndef DBAR #define BAZ 333 #endif int main(int argc, char** argv) { int32_t i = EVEN(42) + BAZ; printf("%d\n", i); return EXIT_SUCCESS; }