mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-13 03:29:50 +00:00
15 lines
249 B
C
15 lines
249 B
C
|
extern void foo_in_so(void);
|
||
|
extern void unresolved_detected_at_runtime_not_at_linktime (void);
|
||
|
|
||
|
void call_unresolved(void)
|
||
|
{
|
||
|
unresolved_detected_at_runtime_not_at_linktime();
|
||
|
}
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
foo_in_so();
|
||
|
|
||
|
return 0;
|
||
|
}
|