struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / support / regression / fwk / lib / extern2.c
blob3ce738d48917e88870a145f5960a9c05638fc26a
1 /* needed by tests/inline.c */
3 #ifdef __SDCC
4 #pragma std_sdcc99
5 #endif
7 extern char inlined_function (void);
9 extern char (*inlined_function_pointer) (void) = &inlined_function;