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) */