diff options
author | Kim Alvefur <zash@zash.se> | 2017-04-25 01:35:13 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-04-25 01:35:13 +0200 |
commit | 42cd234969a1c68f54c6a804649ef9746e95f148 (patch) | |
tree | dca21447635040258279d4e48061621023bc392b /util-src | |
parent | 681b9a640594907c822fabfc673424a2096792f1 (diff) | |
download | prosody-42cd234969a1c68f54c6a804649ef9746e95f148.tar.gz prosody-42cd234969a1c68f54c6a804649ef9746e95f148.zip |
util.crand: Build with musl/non-glibc (can't have undefined argument-taking macros?)
Diffstat (limited to 'util-src')
-rw-r--r-- | util-src/crand.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util-src/crand.c b/util-src/crand.c index d4b84327..7eea1f2b 100644 --- a/util-src/crand.c +++ b/util-src/crand.c @@ -29,6 +29,10 @@ #if defined(WITH_GETRANDOM) +#ifndef __GLIBC_PREREQ +#define __GLIBC_PREREQ(a,b) 0 +#endif + #if ! __GLIBC_PREREQ(2,25) #include <unistd.h> #include <sys/syscall.h> |