Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | stdlib: fix arc4random return type to u_int32_t | Timo Teräs | 2011-12-23 | 1 | -1/+2 |
| | | | | | | | | | | | | | It's documented to be u_int32_t and not uint32_t: http://www.manpagez.com/man/3/arc4random/ This also fixes a major bug that stdlib.h includes stdint.h. Things might go very wrong because stdint.h has conditional defines and if stdlib.h is included before #define's for stdint.h we end up missing things and breaking builds (e.g. openjdk). Signed-off-by: Timo Teräs <timo.teras@iki.fi> Signed-off-by: Natanael Copa <ncopa@alpinelinux.org> | ||||
* | arc4random.c, stdlib.h: get rid of hidden arc4random_stir | Peter S. Mazinger | 2011-03-09 | 1 | -5/+5 |
| | | | | | | The function is used only in one file, make an internal static version for this Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> | ||||
* | style update | Peter S. Mazinger | 2011-03-03 | 1 | -12/+5 |
| | | | | | | Style update avoiding compile warnings Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> | ||||
* | convert // comments to /**/; remove empty #if/#endif pairs. no code changes | Denys Vlasenko | 2009-09-18 | 1 | -1/+0 |
| | | | | Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> | ||||
* | trim Experimentally off and uncommented hidden | Bernhard Reutner-Fischer | 2009-09-18 | 1 | -5/+0 |
| | | | | | | | | sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | ||||
* | Last portion of libc_hidden_proto removal. | Denis Vlasenko | 2008-11-20 | 1 | -1/+1 |
| | | | | | Appears to build fine (several .configs tried) | ||||
* | next portion of libc_hidden_proto removal | Denis Vlasenko | 2008-11-20 | 1 | -3/+3 |
| | |||||
* | libc_hidden_proto removal, just a few functions | Denis Vlasenko | 2008-11-18 | 1 | -1/+1 |
| | |||||
* | - fix inline keyword | Bernhard Reutner-Fischer | 2008-07-23 | 1 | -8/+8 |
| | |||||
* | Don't compile arc4random if option not set | Peter S. Mazinger | 2006-02-13 | 1 | -4/+0 |
| | |||||
* | janlana writes in Bug 700: use standard uint* types rather than u_int | Mike Frysinger | 2006-02-08 | 1 | -15/+15 |
| | |||||
* | correct prototypes and 1 reloc less | Peter S. Mazinger | 2006-01-17 | 1 | -5/+5 |
| | |||||
* | adapt to new hidden | Peter S. Mazinger | 2006-01-14 | 1 | -3/+9 |
| | |||||
* | import the arc4random() function by ashes in Bug 90 | Mike Frysinger | 2006-01-08 | 1 | -0/+208 |