mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-08 14:02:03 +00:00
15 lines
204 B
C
15 lines
204 B
C
#include <stdio.h>
|
|
|
|
#include "a.h"
|
|
|
|
__asm__(".symver a1,a@LIBA_1");
|
|
void a1(void) {
|
|
puts("a1");
|
|
}
|
|
|
|
/* @@ means "default version". */
|
|
__asm__(".symver a2,a@@LIBA_2");
|
|
void a2(void) {
|
|
puts("a2");
|
|
}
|