mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-15 01:10:52 +08:00
20 lines
252 B
C
20 lines
252 B
C
|
#ifndef __ACL_TRACE_INCLUDE_H__
|
||
|
#define __ACL_TRACE_INCLUDE_H__
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "../acl_define.h"
|
||
|
#ifdef ACL_UNIX
|
||
|
|
||
|
void acl_dump_trace(const char *filepath);
|
||
|
|
||
|
#endif /* ACL_UNIX */
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|