Projet_SETI_RISC-V/riscv-gnu-toolchain/gdb/ld/testsuite/ld-pe/direct2_dll.c
2023-03-06 14:48:14 +01:00

20 lines
231 B
C

void
__cdecl
lib2foocdecl(int junk1, int* junk2)
{
*junk2 = junk1;
}
void
__stdcall
lib2foostdcall(int junk1, int* junk2)
{
*junk2 = junk1;
}
void
__fastcall
lib2foofastcall(int junk1, int* junk2)
{
*junk2 = junk1;
}