aboutsummaryrefslogtreecommitdiff
path: root/tinycc/tests/tests2/120+_alias.c
blob: 8f29d8d93b08628e0c3bf00a15cc1a21820583b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern int printf (const char *, ...);
extern void target(void);
extern void alias_for_target(void);
extern void asm_for_target(void);

void inunit2(void);

void inunit2(void)
{
  target();
  alias_for_target();
  /* This symbol is not supposed to be available in this unit:
     asm_for_target();
   */
}