view src/ploki/hang.c @ 11385:fbf25f5794be

<wob_jonas> forget john
author HackBot
date Wed, 28 Feb 2018 02:18:52 +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;
	}
}