mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-14 01:00:25 +00:00
12 lines
129 B
C
12 lines
129 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "a.h"
|
|
#include "b.h"
|
|
|
|
int main() {
|
|
a();
|
|
b();
|
|
return EXIT_SUCCESS;
|
|
}
|