source: trunk/sys/dietlibc/include/sys/times.h @ 1

Last change on this file since 1 was 1, checked in by alain, 7 years ago

First import

File size: 265 bytes
Line 
1#ifndef _SYS_TIMES_H
2#define _SYS_TIMES_H
3
4#include <sys/cdefs.h>
5#include <sys/types.h>
6
7__BEGIN_DECLS
8
9struct tms {
10        clock_t tms_utime;
11        clock_t tms_stime;
12        clock_t tms_cutime;
13        clock_t tms_cstime;
14};
15
16clock_t times(struct tms *buf) __THROW;
17
18__END_DECLS
19
20#endif
Note: See TracBrowser for help on using the repository browser.