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