modified: Makefile

modified:   src/planner.c
bugfix
ketrptr 2024-12-16 09:40:51 +01:00
parent 0c27b315a9
commit e4b1580d1e
2 changed files with 4 additions and 5 deletions

View File

@ -36,7 +36,7 @@ edit:
nvim $(PLF) Makefile $(LLST) src/test.c nvim $(PLF) Makefile $(LLST) src/test.c
clean: clean:
rm -rf *.o debugOut src/*.gch rm -rf *.o debugOut src/*.gch *.csv *.ics

View File

@ -16,8 +16,7 @@
#include <time.h> #include <time.h>
#ifdef _WIN32 #ifdef _WIN32
#define ctime_r(T, Tm) (localtime_s(Tm, T) ? NULL : Tm)
_WIN32 #define ctime_r(T, Tm)(localtime_s(Tm, T) ? NULL : Tm)
#define localtime_r(T, Tm) (localtime_s(Tm, T) ? NULL : Tm) #define localtime_r(T, Tm) (localtime_s(Tm, T) ? NULL : Tm)
#endif /* ifdef _WIN32 */ #endif /* ifdef _WIN32 */