mirror of
https://github.com/frida/tinycc
synced 2024-12-20 20:22:36 +03:00
3980e4a5b9
that fixed mingw but also fixed the problem for which the testcase is now added.
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;
|
|
}
|