mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-04 12:59:39 +08:00
22 lines
329 B
C
22 lines
329 B
C
#ifndef __SYS_PATCH_INCLUDE_H__
|
|
#define __SYS_PATCH_INCLUDE_H__
|
|
|
|
#include "lib_acl.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef ACL_MS_WINDOWS
|
|
struct tm *localtime_r(const time_t *timep, struct tm *result);
|
|
#define snprintf _snprintf
|
|
#define getpid _getpid
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|