mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +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);
|