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
13 lines
175 B
C
13 lines
175 B
C
/* Imitation sys/time.h. */
|
|
|
|
#ifndef __SYS_TIME_H__
|
|
#define __SYS_TIME_H__
|
|
|
|
#include <time.h>
|
|
|
|
struct timeval {
|
|
long tv_sec;
|
|
long tv_usec;
|
|
};
|
|
|
|
#endif /* __SYS_TIME_H__ */
|