Files
kaguya 9a9b91c940 user: implement mlibc as the libc, finally.
It's finally done..

Signed-off-by: kaguya <vpshinomiya@protonmail.com>
2026-05-02 03:31:49 -04:00

29 lines
391 B
C

#ifndef _SYS_TIMES_H
#define _SYS_TIMES_H
/* TODO: Only define the clock_t type. */
#include <time.h>
#ifdef __cplusplus
extern "C" {
#endif
struct tms {
clock_t tms_utime;
clock_t tms_stime;
clock_t tms_cutime;
clock_t tms_cstime;
};
#ifndef __MLIBC_ABI_ONLY
clock_t times(struct tms *__tms);
#endif /* !__MLIBC_ABI_ONLY */
#ifdef __cplusplus
}
#endif
#endif /* _SYS_TIMES_H */