implemented: #define localtime_r(T,Tm) (localtime_s(Tm,T) ? NULL:Tm)
parent
7946b3e548
commit
10a36c4a88
8
src/ui.c
8
src/ui.c
|
@ -11,12 +11,10 @@
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#define _POSIX_THREAD_SAFE_FUNCTIONS
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include <time.h>
|
|
||||||
#if defined(_MSC_VER)
|
#define localtime_r(T,Tm) (localtime_s(Tm,T) ? NULL:Tm)
|
||||||
#define localtime_r(T,Tm) (localtime_s(Tm,T) NULL:Tm)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
const char *dbName = "db.csv";
|
const char *dbName = "db.csv";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue