mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
7 lines
139 B
C++
7 lines
139 B
C++
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
// It is crucial that this process never terminates and always is runnable.
|
||
|
while(true);
|
||
|
return 0;
|
||
|
}
|