view src/ploki/hang.c @ 10052:06be28384af9

<Zarutian> learn Maze is so A-Maze-ing that you can not find the exit easily. Truely an labyrithn of limitlessness.
author HackBot
date Sat, 31 Dec 2016 03:48:39 +0000
parents ac0403686959
children
line wrap: on
line source

#include "config.h"
#include "hang.h"

#if HAVE_SLEEP_P
	#include SLEEP_HEADER
#endif

void hang(void) {
	for (;;) {
		DO_SLEEP;
	}
}