mirror of
https://github.com/autc04/Retro68.git
synced 2025-03-02 10:30:00 +00:00
4 lines
104 B
C
4 lines
104 B
C
extern int library_func2 (void);
|
|
int (*fn) (void) = library_func2;
|
|
int main (void) { fn (); return 0; }
|