8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/961026-1.c

18 lines
184 B
C
Raw Normal View History

1997-08-19 03:34:40 -04:00
int
test (arg)
int arg;
{
if (arg > 0 || arg == 0)
return 0;
return -1;
}
main ()
{
if (test (0) != 0)
abort ();
if (test (-1) != -1)
abort ();
exit (0);
}