mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-08 22:41:01 +00:00
15 lines
176 B
C
15 lines
176 B
C
#include "common.h"
|
|
|
|
#if __STDC_VERSION__ >= 199901L
|
|
#endif
|
|
|
|
#if __STDC_VERSION__ >= 201112L
|
|
#endif
|
|
|
|
#ifdef UNDEFINED_BEHAVIOUR
|
|
#endif
|
|
|
|
int main() {
|
|
return EXIT_SUCCESS;
|
|
}
|