X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=StdLib%2FLibC%2FTime%2Fstrftime.c;h=11757b6129eed8314d23a5122918b0ddc1ed40bf;hb=d7ce700605e1af0e455e31ec11f19ff21d26b525;hp=6a5e2a34af8c61210a508705a36fb8be5b57d500;hpb=f766dd76fde231ecd4f2e9faf99293e90902cebb;p=mirror_edk2.git diff --git a/StdLib/LibC/Time/strftime.c b/StdLib/LibC/Time/strftime.c index 6a5e2a34af..11757b6129 100644 --- a/StdLib/LibC/Time/strftime.c +++ b/StdLib/LibC/Time/strftime.c @@ -72,9 +72,9 @@ #define Locale _CurrentTimeLocale -static char * EFIAPI _add(const char *, char *, const char * const); -static char * EFIAPI _conv(const int, const char * const, char * const, const char * const); -static char * EFIAPI _fmt(const char *, const struct tm * const, char *, const char * const, int *); +static char * _add(const char *, char *, const char * const); +static char * _conv(const int, const char * const, char * const, const char * const); +static char * _fmt(const char *, const struct tm * const, char *, const char * const, int *); #define NO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU @@ -89,7 +89,6 @@ static char * EFIAPI _fmt(const char *, const struct tm * const, char *, const c #define IN_ALL 3 size_t -EFIAPI strftime( char * __restrict s, size_t maxsize, @@ -128,7 +127,6 @@ strftime( } static char * -EFIAPI _fmt( const char * format, const struct tm * const t, @@ -574,7 +572,6 @@ label: } static char * -EFIAPI _conv( const int n, const char * const format, @@ -589,7 +586,6 @@ _conv( } static char * -EFIAPI _add( const char * str, char * pt,