modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/execute/920604-1.c (about)

     1  long long
     2  mod (a, b)
     3       long long a, b;
     4  {
     5    return a % b;
     6  }
     7  
     8  int
     9  main ()
    10  {
    11    mod (1LL, 2LL);
    12    exit (0);
    13  }