Retro68/binutils/ld/testsuite/ld-auto-import/dll.c
2012-03-26 21:18:29 +02:00

21 lines
268 B
C

int var = 123;
int foo = 121;
int var2[2]= { 123, 456 };
#include <stdio.h>
void
print_var (void)
{
printf ("DLL sees var = %d\n", var);
}
void
print_foo (void)
{
printf ("DLL sees foo = %d\n", foo);
}
void (* func_ptr)(void) = print_foo;