2024-05-13 22:56:21 -04:00

8 lines
98 B
C

extern void foo();
extern char FOO_STATIC;
int main() {
foo();
return (int)FOO_STATIC;
}