summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/ld/testsuite/ld-size/size-4a.c
blob: b11089b8041f28c7f243e5066334648080039532 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <stdio.h>

char bar[10];
char foo[20] = { 1 } ;
extern int bar_size1 (void);
extern int bar_size2 (void);
extern int foo_size1 (void);
extern int foo_size2 (void);

int
main ()
{
  int size;
  
  size = bar_size1 ();
  if (size == sizeof (bar) && bar_size2 () == size)
    printf ("OK\n");

  size = foo_size1 ();
  if (size == sizeof (foo) && foo_size2 () == size)
    printf ("OK\n");

  return 0;
}