8 lines
93 B
C
8 lines
93 B
C
#include <stdio.h>
|
|
|
|
void foo(void);
|
|
void bar(void) {
|
|
puts("In DSO: bar");
|
|
foo();
|
|
}
|