mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 02:47:56 +08:00
9697f95b8f
This reverts commit 15d999759e
.
15 lines
203 B
C++
15 lines
203 B
C++
#pragma once
|
|
|
|
#ifdef MINGW
|
|
#include <sys/time.h>
|
|
#endif
|
|
|
|
class util
|
|
{
|
|
public:
|
|
util() {}
|
|
~util() {}
|
|
|
|
static double stamp_sub(const struct timeval *from, const struct timeval *sub_by);
|
|
};
|