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