preprocess.h.in 273 B

12345678910
  1. /* Define configured macros. */
  2. #define STRING_VALUE "@STRING_VALUE@"
  3. #define EXPR @EXPR@
  4. #cmakedefine PREPROCESS_XCODE
  5. /* Declarations and macros shared by all sources. */
  6. #define TO_STRING(x) TO_STRING0(x)
  7. #define TO_STRING0(x) #x
  8. static int f(int i) { return i*3; }