shithub: 9intro

ref: 87288afa5ac476efb3ef1ed40df658427339f13e
dir: /src/pnote.c/

View raw version
#include <u.h>
#include <libc.h>

int
handler(void*, char* msg)
{
	print("note: %s\n", msg);
	return 0;
}

void
main(int, char*[])
{
	atnotify(handler, 1);
	sleep(3600 * 1000);	// one hour to play
	print("done (%r)\n");
	exits(nil);
}