compiled newlib, need to hook up the system calls

This commit is contained in:
2026-06-28 17:58:58 -05:00
parent 43bc0df81a
commit 97357f3170
337 changed files with 47955 additions and 114 deletions

View File

@@ -0,0 +1,17 @@
#ifndef _SYS_TIMES_H
#define _SYS_TIMES_H
#include <sys/types.h>
/* Structure describing CPU time used by a process and its children */
struct tms {
clock_t tms_utime; /* User CPU time */
clock_t tms_stime; /* System CPU time */
clock_t tms_cutime; /* User CPU time of dead children */
clock_t tms_cstime; /* System CPU time of dead children */
};
/* Function prototype for timing system call */
clock_t times(struct tms *buffer);
#endif /* _SYS_TIMES_H */