mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-17 03:08:12 -04:00
21 lines
231 B
C
21 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;
|
|
}
|