Skip to content

Commit

Permalink
Fixed missing os.date specifiers on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
MCJack123 committed Mar 29, 2024
1 parent aae747e commit 92c1f0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loslib.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*/
#if !defined(LUA_STRFTIMEOPTIONS)

#if !defined(LUA_USE_POSIX)
#if !defined(LUA_USE_POSIX) && !(defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199900) && !(defined(__cplusplus) && __cplusplus >= 201100)
#define LUA_STRFTIMEOPTIONS { "aAbBcdHIjmMpSUwWxXyYz%", "" }
#else
#define LUA_STRFTIMEOPTIONS \
Expand Down

0 comments on commit 92c1f0f

Please sign in to comment.