#pragma once #include struct tms { clock_t tms_utime; clock_t tms_stime; clock_t tms_cutime; clock_t tms_cstime; }; static inline clock_t times(struct tms *buf) { __libc_panic("unimplemented"); }