mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 18:32:49 -04: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__ */
|