mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
10 lines
161 B
C
10 lines
161 B
C
#ifndef __SYS_RESOURCE_H__
|
|
#define __SYS_RESOURCE_H__
|
|
|
|
struct rusage {
|
|
struct timeval ru_utime;
|
|
struct timeval ru_stime;
|
|
};
|
|
|
|
#endif /* __SYS_RESOURCE_H__ */
|