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
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
fwk
/
lib
/
extern2.c
blob
3ce738d48917e88870a145f5960a9c05638fc26a
1
/* needed by tests/inline.c */
2
3
#ifdef __SDCC
4
#pragma std_sdcc99
5
#endif
6
7
extern
char
inlined_function
(
void
);
8
9
extern
char
(*
inlined_function_pointer
) (
void
) = &
inlined_function
;