标签: c macos time.h
我正在尝试使用以下代码使用此C函数:
struct tm *res = NULL; result = getdate_r(temp->value, res);
然而clang告诉我:implicit declaration of function 'getdate_r' is invalid in C99
implicit declaration of function 'getdate_r' is invalid in C99
我有以下内容:
#define _GNU_SOURCE #include <time.h>
有没有人设法在OS X上使用getdate_r?
getdate_r