aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-elfweak/main1.c
blob: 8a897a291414309b63bf31ad1ccb9254f3026cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <stdio.h>

#pragma weak deallocate_foo
int deallocate_foo = 1;

extern int * bar ();
extern int * foo ();
extern void abort ();

int
main ()
{
  if (&deallocate_foo != bar () || &deallocate_foo != foo ())
    abort ();

  if (deallocate_foo)
    printf ("weak deallocate_foo\n");
  else
    printf ("strong deallocate_foo\n");

  return 0;
}