Overview
| Comment: | Add support for getrandom() |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
ba1135b0b28106f36be3178cd0661f1d |
| User & Date: | js on 2020-07-12 10:00:16 |
| Other Links: | manifest | tags |
Context
|
2020-07-12
| ||
| 10:35 | Split of_random() into of_random{16,32,64}() (check-in: 14f05841a3 user: js tags: trunk) | |
| 10:00 | Add support for getrandom() (check-in: ba1135b0b2 user: js tags: trunk) | |
| 09:49 | Make of_random() a function (check-in: c1fe4b2b77 user: js tags: trunk) | |
Changes
Modified configure.ac from [989ef7fcda] to [69c688a7b0].
| ︙ | |||
897 898 899 900 901 902 903 | 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 | - + | ]) AS_IF([test x"$enable_static" = x"yes" -o x"$enable_shared" = x"no"], [ AC_SUBST(ENCODINGS_A, "encodings.a") AC_SUBST(ENCODINGS_ENCODINGS_A, "encodings/encodings.a") ]) ]) |
| ︙ |
Modified src/OFObject.m from [54579841e3] to [d3c7a17532].
| ︙ | |||
119 120 121 122 123 124 125 | 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | - + + + + + + + |
# endif
}
#endif
uint32_t
of_random(void)
{
|
| ︙ |