summaryrefslogtreecommitdiff
path: root/src/sys/times/times.c
blob: 753d66aeea69ab52fc3bcd3fc31b9d38954bd96f (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "time.h"
#include <sys/times.h>

clock_t times(struct tms *buffer)
{
	(void)buffer;
	return (clock_t)-1;
}
/*
POSIX(1)
*/