mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 10:57:34 +08:00
9697f95b8f
This reverts commit 15d999759e
.
17 lines
312 B
C
17 lines
312 B
C
#ifndef ACL_METER_TIME_INCLUDE_H
|
|
#define ACL_METER_TIME_INCLUDE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
ACL_API double acl_meter_time(const char *filename, int line, const char *info);
|
|
|
|
#define ACL_METER_TIME(info) acl_meter_time(__FILE__, __LINE__, info)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|