RTC example error

Hi,

I am trying the RTC example https://github.com/blynkkk/blynk-library/blob/master/examples/Widgets/RTC/RTC.ino.

I am getting the error below:

Arduino/libraries/Time/DateStrings.cpp:76:66: error: 'strcpy_P' was not declared in this scope
     strcpy_P(buffer, (PGM_P)pgm_read_word(&(monthNames_P[month])));
                                                                  ^
....../Documents/Arduino/libraries/Time/DateStrings.cpp: In function 'char* dayStr(uint8_t)':
..../Documents/Arduino/libraries/Time/DateStrings.cpp:90:61: error: 'strcpy_P' was not declared in this scope
    strcpy_P(buffer, (PGM_P)pgm_read_word(&(dayNames_P[day])));
                                                             ^
Multiple libraries were found for "Ethernet.h"
 Used: ..../Library/Arduino15/packages/esp8266/hardware/esp8266/2.4.2/libraries/Ethernet*
* Not used: /private/var/folders/_g/_4t6g_8941x0lm6jypsg477m0000gn/T/AppTranslocation/00E636A5-DBBE-433A-9B99-D1E3BE15EC50/d/Arduino-2.app/Contents/Java/libraries/Ethernet*
*exit status 1*
*Error compiling for board WeMos D1 R1.*

Not really sure where the strcpy_P needs to be declared.

Thanks
Sharon

Compiles fine on my PC… Are you sure you have the correct time library as referenced in the comments in the example?