1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-10 00:06:32 -05:00

Fix merge conflicts

This commit is contained in:
darkf
2014-12-29 19:47:41 -08:00
288 changed files with 17413 additions and 13969 deletions

View File

@@ -80,7 +80,7 @@
inline struct tm* localtime_r(const time_t *clock, struct tm *result) {
if (localtime_s(result, clock) == 0)
return result;
return NULL;
return nullptr;
}
#endif