Remove another source of nondeterminism in Lua... luai_makeseed.

This commit is contained in:
2022-02-18 03:50:40 -05:00
parent 467f25b927
commit 6a6d2c7f75

View File

@@ -48,7 +48,7 @@
*/
#if !defined(luai_makeseed)
#include <time.h>
#define luai_makeseed() cast(unsigned int, time(NULL))
#define luai_makeseed() 1234
#endif