Fix building PE test executables in environments where $CFLAGS is needed.
[deliverable/binutils-gdb.git] / ld / testsuite / ld-pe / direct2_dll.c
1 void
2 __cdecl
3 lib2foocdecl(int junk1, int* junk2)
4 {
5 *junk2 = junk1;
6 }
7
8 void
9 __stdcall
10 lib2foostdcall(int junk1, int* junk2)
11 {
12 *junk2 = junk1;
13 }
14
15 void
16 __fastcall
17 lib2foofastcall(int junk1, int* junk2)
18 {
19 *junk2 = junk1;
20 }
This page took 0.031217 seconds and 4 git commands to generate.