mirror of
https://github.com/pret/agbcc.git
synced 2026-07-10 14:34:52 -05:00
10 lines
161 B
C
Executable File
10 lines
161 B
C
Executable File
#ifndef __SYS_RESOURCE_H__
|
|
#define __SYS_RESOURCE_H__
|
|
|
|
struct rusage {
|
|
struct timeval ru_utime;
|
|
struct timeval ru_stime;
|
|
};
|
|
|
|
#endif /* __SYS_RESOURCE_H__ */
|