lprintf.h 211 B

12345678
  1. /*
  2. * This file substitutes lprintf.h from the prboom source.
  3. * Written by Pedro Gimeno, donated to the public domain.
  4. */
  5. #define STRINGIFY(x) #x
  6. #define lprintf(x, ...) printf(STRINGIFY(x) ": " __VA_ARGS__)