1#include <sys/times.h>
2
3#include <errno.h>
4
5clock_t times(struct tms* tms) {
6    errno = ENOSYS;
7    return -1;
8}
9