aboutsummaryrefslogtreecommitdiff
path: root/debug/programs/infinite_loop.c
blob: 460f78a43d4d5a94b8f172e1f627a7c9072322bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <stdlib.h>


int main()
{

  volatile int forever = 1;
  while (forever);

  return 1;
}