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

14 lines
109 B
C
Raw Normal View History

1997-08-19 03:34:40 -04:00
long long
mod (a, b)
long long a, b;
{
return a % b;
}
int
main ()
{
mod (1LL, 2LL);
exit (0);
}