mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-08 19:26:45 +00:00
8 lines
70 B
C
8 lines
70 B
C
int loop()
|
|
{
|
|
int volatile x = 0;
|
|
while (1)
|
|
x++;
|
|
return x;
|
|
}
|