460f78a43d4d5a94b8f172e1f627a7c9072322bb
[riscv-tests.git] / debug / programs / infinite_loop.c
1 #include <stdio.h>
2 #include <string.h>
3 #include <stdint.h>
4 #include <stdlib.h>
5
6
7 int main()
8 {
9
10 volatile int forever = 1;
11 while (forever);
12
13 return 1;
14 }