mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-15 01:30:01 +00:00
17 lines
282 B
C
17 lines
282 B
C
#include <stdio.h>
|
|
|
|
/* MUST come before the include. */
|
|
/* Preprocessor does things in the exact same order it sees them. */
|
|
/*#define DEF*/
|
|
#define DEF
|
|
#include "a.h"
|
|
#include "b.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
a();
|
|
b();
|
|
|
|
/* Preprocessor includes */
|
|
def++;
|
|
}
|