blob: 6dabab263fba609141e95be5a1dacdcc34c093dd [file] [log] [blame]
#include <errno.h>
#include <sys/times.h>
clock_t times(struct tms* tms) {
errno = ENOSYS;
return -1;
}