8 lines
98 B
C
8 lines
98 B
C
extern void foo();
|
|
extern char FOO_STATIC;
|
|
|
|
int main() {
|
|
foo();
|
|
return (int)FOO_STATIC;
|
|
}
|