mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
20 lines
180 B
C
20 lines
180 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int counter;
|
||
|
extern void f(void);
|
||
|
|
||
|
void
|
||
|
real_g(void)
|
||
|
{
|
||
|
counter++;
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
real_g();
|
||
|
f();
|
||
|
if (counter == 3)
|
||
|
printf ("PASS\n");
|
||
|
return 0;
|
||
|
}
|