mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
22 lines
207 B
C
22 lines
207 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int counter;
|
||
|
extern void foo (void);
|
||
|
extern void xxx (void);
|
||
|
|
||
|
void
|
||
|
bar (void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
int
|
||
|
main(void)
|
||
|
{
|
||
|
bar ();
|
||
|
foo ();
|
||
|
xxx ();
|
||
|
if (counter == 1)
|
||
|
printf ("PASS\n");
|
||
|
return 0;
|
||
|
}
|