mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-11 07:50:53 +00:00
13 lines
259 B
C
13 lines
259 B
C
#include <stdio.h>
|
|
|
|
/*
|
|
Not mandatory in this example since we define the function here.
|
|
|
|
But still a good idea to ensure that the prototypes are compatible.
|
|
|
|
Often required because of header struct declarations.
|
|
*/
|
|
#include "a.h"
|
|
|
|
void a(void) { puts("a"); }
|