From 2bbc7be59cd9c75e4c32563c9194f4c15747eb20 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Sun, 8 Mar 2020 20:25:59 +0000 Subject: [PATCH] Resolve warning C4013: 'localtime_r' undefined; assuming extern returning int --- src/uifc/uifc32.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/uifc/uifc32.c b/src/uifc/uifc32.c index 173535e6a1..450d3556bb 100644 --- a/src/uifc/uifc32.c +++ b/src/uifc/uifc32.c @@ -47,6 +47,7 @@ #define mswait(x) Sleep(x) #endif #include <genwrap.h> // for alloca() +#include <datewrap.h> // localtime_r() #include "ciolib.h" #include "uifc.h" -- GitLab