mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
ee4766827a
symbol to avoid direct use of GPL only symbol. git-svn-id: https://outreach.scidac.gov/svn/spl/trunk@36 7e1ea52c-4ff2-0310-8f11-9dd32ca42a1c
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);
|