aboutsummaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-11-02 17:33:33 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-11-02 17:33:33 -0200
commite75c0148c387962f484f00701169a194b61a0429 (patch)
tree0dc68284b73553b8c7981ceef2aa955c4faefa5c /lstate.c
parent28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9 (diff)
downloadlua-e75c0148c387962f484f00701169a194b61a0429.tar.gz
lua-e75c0148c387962f484f00701169a194b61a0429.tar.bz2
lua-e75c0148c387962f484f00701169a194b61a0429.zip
comments (references to "ANSI C" changed to "ISO C", which is the
international name
Diffstat (limited to 'lstate.c')
-rw-r--r--lstate.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/lstate.c b/lstate.c
index 75d914e4..d42f0e82 100644
--- a/lstate.c
+++ b/lstate.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.c,v 2.125 2014/07/24 16:17:56 roberto Exp roberto $ 2** $Id: lstate.c,v 2.126 2014/11/02 19:19:04 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -74,9 +74,8 @@ typedef struct LG {
74 74
75 75
76/* 76/*
77** Compute an initial seed as random as possible. In ANSI, rely on 77** Compute an initial seed as random as possible. Rely on Address Space
78** Address Space Layout Randomization (if present) to increase 78** Layout Randomization (if present) to increase randomness..
79** randomness..
80*/ 79*/
81#define addbuff(b,p,e) \ 80#define addbuff(b,p,e) \
82 { size_t t = cast(size_t, e); \ 81 { size_t t = cast(size_t, e); \