repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
regression
/
tcc
/
120+_alias.c
blob
8f29d8d93b08628e0c3bf00a15cc1a21820583b8
1
extern
int
printf
(
const char
*, ...);
2
extern
void
target
(
void
);
3
extern
void
alias_for_target
(
void
);
4
extern
void
asm_for_target
(
void
);
5
6
void
inunit2
(
void
);
7
8
void
inunit2
(
void
)
9
{
10
target
();
11
alias_for_target
();
12
/* This symbol is not supposed to be available in this unit:
13
asm_for_target();
14
*/
15
}