// CSE 374 22sp lecture 8
// Simple uses of preprocessor
// (compile with gcc -E -P or cpp -P to see how the preprocessor
// rewrites the original program)

#include <stdio.h>
#include <stdlib.h>

#define MAGIC 17

int main() {
  printf("hello\nthe magic number is %d\n", MAGIC);
  return EXIT_SUCCESS;   // defined in stdlib.h (0 status)
}