summaryrefslogtreecommitdiff
path: root/sys/src/ape/lib/ap/plan9/alarm.c
blob: f8a24aa65a6ea9fc436917e454baf102aad4849c (plain)
1
2
3
4
5
6
7
8
9
#include "lib.h"
#include <unistd.h>
#include "sys9.h"

unsigned int
alarm(unsigned seconds)
{
	return _ALARM(seconds*1000);
}