mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
[CRT] Fix prototype of _Strftime
This commit is contained in:
parent
fd1a48d497
commit
7765ff89ff
1 changed files with 2 additions and 1 deletions
|
@ -112,8 +112,9 @@ static inline BOOL strftime_int(char *str, size_t *pos, size_t max,
|
|||
* _Strftime (MSVCRT.@)
|
||||
*/
|
||||
size_t CDECL _Strftime(char *str, size_t max, const char *format,
|
||||
const struct tm *mstm, MSVCRT___lc_time_data *time_data)
|
||||
const struct tm *mstm, void *_Lc_time_arg)
|
||||
{
|
||||
MSVCRT___lc_time_data *time_data = (MSVCRT___lc_time_data*)_Lc_time_arg;
|
||||
size_t ret, tmp;
|
||||
BOOL alternate;
|
||||
|
||||
|
|
Loading…
Reference in a new issue