diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-11-02 17:33:33 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-11-02 17:33:33 -0200 |
commit | e75c0148c387962f484f00701169a194b61a0429 (patch) | |
tree | 0dc68284b73553b8c7981ceef2aa955c4faefa5c /lstate.c | |
parent | 28fdbcf393c6c709a21a29f47cfa4c6ed4031ae9 (diff) | |
download | lua-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.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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); \ |