diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2019-01-25 20:32:58 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2019-01-25 20:32:58 +0100 |
commit | 9ca68e43eac3ad3a49fc2440e89fd89f4ce88881 (patch) | |
tree | a5938239a1fd2ee3c2fd7d666e2775597a5bdb8f | |
parent | 25a40d7249cc9f558bd23969cadfe2fe05ab9b68 (diff) |
fix compile error for android: do not include bsd stdlib
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | src/utils.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/utils.c b/src/utils.c index 462d688..bd3ea0e 100644 --- a/src/utils.c +++ b/src/utils.c @@ -43,13 +43,16 @@ * Note that the source code is best viewed with tabs set to 4 spaces. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif #include <stdio.h> #include <stdlib.h> #include <stdarg.h> #include <string.h> #include <time.h> #include <assert.h> -#ifdef HAVE_ARC4RANDOM +#ifdef HAVE_BSD_STDLIB_H #include <bsd/stdlib.h> #endif |