File: bar1a.c

package info (click to toggle)
binutils 2.15-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 86,288 kB
  • ctags: 93,872
  • sloc: ansic: 672,886; asm: 243,857; exp: 44,950; makefile: 29,286; sh: 17,224; lisp: 7,387; yacc: 5,855; lex: 1,520; perl: 1,383; cpp: 1,339; sed: 522; pascal: 175; awk: 26
file content (26 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (48)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <stdio.h>

extern int deallocate_foo;

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

void
foobar ()
{
  if (&deallocate_foo != bar () || &deallocate_foo != foo ())
    abort ();

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

int *
bar()
{
  return &deallocate_foo;
}