2024-06-03 16:47:46 +08:00

14 lines
247 B
C

#ifndef _OB_UTILS_H_
#define _OB_UTILS_H_
#include "mysql.h"
#include "ma_global.h"
#ifdef _WIN32
int gettimeofday(struct timeval *tp, void *tzp);
#endif
int ob_gettimeofday(struct timeval *tp, void *tzp);
int64_t get_current_time_us();
#endif