Software /
code /
prosody
Comparison
util-src/crand.c @ 8423:65c82a7d0537
util.crand: Reorder includes so system ones are first
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 01 Dec 2017 00:28:52 +0100 |
parent | 8422:6eecf82ccd8e |
child | 8424:b0a267f77d9e |
comparison
equal
deleted
inserted
replaced
8422:6eecf82ccd8e | 8423:65c82a7d0537 |
---|---|
20 */ | 20 */ |
21 | 21 |
22 #define _DEFAULT_SOURCE | 22 #define _DEFAULT_SOURCE |
23 | 23 |
24 #include <stdlib.h> | 24 #include <stdlib.h> |
25 #include <string.h> | |
26 #include <errno.h> | |
25 | 27 |
26 #include "lualib.h" | 28 #include "lualib.h" |
27 #include "lauxlib.h" | 29 #include "lauxlib.h" |
28 | |
29 #include <string.h> | |
30 #include <errno.h> | |
31 | 30 |
32 #if defined(WITH_GETRANDOM) | 31 #if defined(WITH_GETRANDOM) |
33 | 32 |
34 #ifndef __GLIBC_PREREQ | 33 #ifndef __GLIBC_PREREQ |
35 #define __GLIBC_PREREQ(a,b) 0 | 34 #define __GLIBC_PREREQ(a,b) 0 |