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  }