Update contributors list for update of alpha-vms bfd.
[binutils.git] / ld / testsuite / ld-cygwin / testdll.c
blob206430737abb8264424fdf5833146ac903f64dbc
1 extern void exewrite (void);
2 __attribute((dllimport)) int global_a;
4 void
5 dllwrite (void)
7 global_a = 3;
8 exewrite ();
11 int _stdcall testdll_main(int p1, unsigned long p2, void* p3)
13 return 1;