mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-30 05:37:13 +09:00
12 lines
154 B
C
12 lines
154 B
C
#ifndef _SYS_TIME_H
|
|
#define _SYS_TIME_H
|
|
|
|
struct timeval {
|
|
long long tv_sec;
|
|
long tv_usec;
|
|
};
|
|
|
|
int gettimeofday(struct timeval *tv, void *tz);
|
|
|
|
#endif
|