mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-03-11 22:13:10 +03:00
12 lines
181 B
C
12 lines
181 B
C
![]() |
#include <sys/sysmacros.h>
|
||
|
#include <sys/time.h>
|
||
|
#include "config.h"
|
||
|
|
||
|
void
|
||
|
__gethrestime(timestruc_t *ts)
|
||
|
{
|
||
|
getnstimeofday((struct timespec *)ts);
|
||
|
}
|
||
|
|
||
|
EXPORT_SYMBOL(__gethrestime);
|