mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 03:47:53 +08:00
9697f95b8f
This reverts commit 15d999759e
.
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
|
|
|