blob: 278e493944728f7c7e256389f851499e31b51845 [file] [log] [blame]
void abort (void);
void exit (int);
long x = -1L;
int main()
{
long b = (x != -1L);
if (b)
abort();
exit(0);
}