#include "gbos.h" /* spin: a harmless long-running process that just yields forever. Useful as a target for `ps` and `kill`. */ void main(void) { for (;;) yield(); }