Jürgen Büchel 2024-12-16 09:42:07 +01:00
commit 053bf501b5
2 changed files with 3 additions and 5 deletions

View File

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

View File

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