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
/
85_asm-outside-function.c
blob
3d7434dd93c32282b98d4226d2beb8d25a0277dc
1
#ifdef __leading_underscore
2
# define _
"_"
3
#else
4
# define _
5
#endif
6
7
extern
int
printf
(
const char
*, ...);
8
extern
void
vide
(
void
);
9
__asm__
(
_
"vide: ret"
);
10
11
int
main
() {
12
vide
();
13
printf
(
"okay
\n
"
);
14
return
0
;
15
}