aboutsummaryrefslogtreecommitdiff
path: root/doc/tests/fontes/bits-timelimit.c
blob: 19e1c578982e5f67ebd3c14f52166112352cad0d (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>
int main(void) {
  int n=0;
  while(42) {
    n++;
  }
  return 0;
}