mirror of
https://github.com/opnsense/src.git
synced 2026-04-03 08:25:16 -04:00
fully registered. (This is the second try, the first import ignored .info files but not .info-* files, for some reason. I'm going to make this consistent.) Reviewed by: core Approved for: 2.2
9 lines
161 B
C
9 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__ */
|