aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-auto-import/dll.c
blob: ccf85e4f5779af96ea2a97e460c9c8e6be9ca225 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;