mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
236adb1bd0
git-svn-id: file:///svn/toku/tokudb.1032b@8054 c7de825b-a66e-492c-adef-691d508d4ae1
22 lines
284 B
C
22 lines
284 B
C
#ifndef TOKU_TIME_H
|
|
#define TOKU_TIME_H
|
|
|
|
#include <windows.h>
|
|
#include <time.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct timezone {
|
|
int tz_minuteswest;
|
|
int tz_dsttime;
|
|
};
|
|
|
|
int gettimeofday(struct timeval *tv, struct timezone *tz);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif
|