lang-bootstrap/05/tcc-final/tests/tests2/120+_alias.c
2025-04-18 12:38:54 +01:00

15 lines
306 B
C

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();
*/
}