diff options
author | Mike Pall <mike> | 2024-07-04 01:26:29 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2024-07-04 01:26:29 +0200 |
commit | 04dca7911ea255f37be799c18d74c305b921c1a6 (patch) | |
tree | 0979ae369fbb82e7e5fb1c53fcf5cf5955c95f7b /src/Makefile.dep | |
parent | 7421a1b33c7ea46f12bba9700c15b5c90253fee0 (diff) | |
download | luajit-04dca7911ea255f37be799c18d74c305b921c1a6.tar.gz luajit-04dca7911ea255f37be799c18d74c305b921c1a6.tar.bz2 luajit-04dca7911ea255f37be799c18d74c305b921c1a6.zip |
Call math.randomseed() without arguments to seed from system entropy.
Reminder: the math.random() PRNG is NOT SUITABLE FOR CRYPTOGRAPHIC USE.
Diffstat (limited to 'src/Makefile.dep')
-rw-r--r-- | src/Makefile.dep | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.dep b/src/Makefile.dep index fda77c83..e9f83399 100644 --- a/src/Makefile.dep +++ b/src/Makefile.dep | |||
@@ -32,7 +32,8 @@ lib_jit.o: lib_jit.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h lj_def.h \ | |||
32 | lj_target.h lj_target_*.h lj_trace.h lj_dispatch.h lj_traceerr.h \ | 32 | lj_target.h lj_target_*.h lj_trace.h lj_dispatch.h lj_traceerr.h \ |
33 | lj_vm.h lj_vmevent.h lj_lib.h luajit.h lj_libdef.h | 33 | lj_vm.h lj_vmevent.h lj_lib.h luajit.h lj_libdef.h |
34 | lib_math.o: lib_math.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h \ | 34 | lib_math.o: lib_math.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h \ |
35 | lj_def.h lj_arch.h lj_lib.h lj_vm.h lj_prng.h lj_libdef.h | 35 | lj_def.h lj_arch.h lj_err.h lj_errmsg.h lj_lib.h lj_vm.h lj_prng.h \ |
36 | lj_libdef.h | ||
36 | lib_os.o: lib_os.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h lj_def.h \ | 37 | lib_os.o: lib_os.c lua.h luaconf.h lauxlib.h lualib.h lj_obj.h lj_def.h \ |
37 | lj_arch.h lj_gc.h lj_err.h lj_errmsg.h lj_buf.h lj_str.h lj_lib.h \ | 38 | lj_arch.h lj_gc.h lj_err.h lj_errmsg.h lj_buf.h lj_str.h lj_lib.h \ |
38 | lj_libdef.h | 39 | lj_libdef.h |