add directory kernel
This commit is contained in:
15
kernel/0.00/linux-0.01/include/sys/times.h
Normal file
15
kernel/0.00/linux-0.01/include/sys/times.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#ifndef _TIMES_H
|
||||
#define _TIMES_H
|
||||
|
||||
#include <sys/types.h>
|
||||
|
||||
struct tms {
|
||||
time_t tms_utime;
|
||||
time_t tms_stime;
|
||||
time_t tms_cutime;
|
||||
time_t tms_cstime;
|
||||
};
|
||||
|
||||
extern time_t times(struct tms * tp);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user