summaryrefslogtreecommitdiff
path: root/src/code/sys_freeze.c
blob: c5e427f02a56cfc7494f6f942ef8c051f1afd4cd (plain)
1
2
3
4
5
6
7
8
#include "libc64/sleep.h"
#include "attributes.h"

NORETURN void Sys_Freeze(void) {
    for (;;) {
        msleep(1000);
    }
}