]> git.proxmox.com Git - mirror_spl-debian.git/blame - modules/spl/spl-time.c
Remap gethrestime() with #define to new symbol and export that new
[mirror_spl-debian.git] / modules / spl / spl-time.c
CommitLineData
ee476682 1#include <sys/sysmacros.h>
2#include <sys/time.h>
3#include "config.h"
4
5void
6__gethrestime(timestruc_t *ts)
7{
8 getnstimeofday((struct timespec *)ts);
9}
10
11EXPORT_SYMBOL(__gethrestime);