mirror of
https://github.com/mirror/tinycc.git
synced 2025-01-05 04:40:06 +08:00
13 lines
213 B
C
13 lines
213 B
C
|
extern int printf(const char *, ...);
|
||
|
void f(void);
|
||
|
void bar(void) { void f(void); f(); }
|
||
|
void foo(void) { extern void f(void); f(); }
|
||
|
void f(void) { printf("f\n"); }
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
bar();
|
||
|
foo();
|
||
|
return 0;
|
||
|
}
|