mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
12 lines
160 B
C
12 lines
160 B
C
|
#include <stdio.h>
|
||
|
|
||
|
extern int select ();
|
||
|
extern int f2 (int);
|
||
|
|
||
|
int main (void)
|
||
|
{
|
||
|
if (select () == 0 && f2 (0) == 22222)
|
||
|
printf ("PASS\n");
|
||
|
return 0;
|
||
|
}
|