aboutsummaryrefslogtreecommitdiff
path: root/src/lj_def.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lj_def.h')
-rw-r--r--src/lj_def.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lj_def.h b/src/lj_def.h
index af0687c4..e458c89f 100644
--- a/src/lj_def.h
+++ b/src/lj_def.h
@@ -372,4 +372,9 @@ static LJ_AINLINE uint32_t lj_getu32(const void *v)
372 extern void LJ_ASSERT_NAME(__LINE__)(int STATIC_ASSERTION_FAILED[(cond)?1:-1]) 372 extern void LJ_ASSERT_NAME(__LINE__)(int STATIC_ASSERTION_FAILED[(cond)?1:-1])
373#endif 373#endif
374 374
375/* PRNG state. Need this here, details in lj_prng.h. */
376typedef struct PRNGState {
377 uint64_t u[4];
378} PRNGState;
379
375#endif 380#endif