mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
16 lines
116 B
C
16 lines
116 B
C
|
#include <stdio.h>
|
||
|
|
||
|
extern void foo (void);
|
||
|
|
||
|
void
|
||
|
foo (void)
|
||
|
{
|
||
|
printf ("DSO\n");
|
||
|
}
|
||
|
|
||
|
void
|
||
|
bar (void)
|
||
|
{
|
||
|
foo ();
|
||
|
}
|