mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +00:00
29 lines
323 B
C
29 lines
323 B
C
|
extern void abort (void);
|
||
|
|
||
|
int tar (int i)
|
||
|
{
|
||
|
if (i != 36863)
|
||
|
abort ();
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
void bug(int q, int bcount)
|
||
|
{
|
||
|
int j = 0;
|
||
|
int outgo = 0;
|
||
|
|
||
|
while(j != -1)
|
||
|
{
|
||
|
outgo++;
|
||
|
if (outgo > q-1)
|
||
|
outgo = q-1;
|
||
|
j = tar (outgo*bcount);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
bug(5, 36863);
|
||
|
return 0;
|
||
|
}
|