summaryrefslogtreecommitdiffstats
path: root/openbsd-compat
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2022-08-08 04:17:04 +0200
committerDarren Tucker <dtucker@dtucker.net>2022-08-08 04:17:04 +0200
commit7a01f61be8d0aca0e975e7417f26371495fe7674 (patch)
treef1b392d7b9d724e76e1e87e67aa499178e28291d /openbsd-compat
parentGive unused param a name. (diff)
downloadopenssh-7a01f61be8d0aca0e975e7417f26371495fe7674.tar.xz
openssh-7a01f61be8d0aca0e975e7417f26371495fe7674.zip
Actually put HAVE_STDINT_H around the stdint.h.
Diffstat (limited to 'openbsd-compat')
-rw-r--r--openbsd-compat/arc4random_uniform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/arc4random_uniform.c b/openbsd-compat/arc4random_uniform.c
index 1dfec8f6c..b1a8aeea2 100644
--- a/openbsd-compat/arc4random_uniform.c
+++ b/openbsd-compat/arc4random_uniform.c
@@ -20,10 +20,10 @@
#include "includes.h"
-#include <stdint.h>
#ifdef HAVE_STDINT_H
-# include <stdlib.h>
+# include <stdint.h>
#endif
+#include <stdlib.h>
#ifndef HAVE_ARC4RANDOM_UNIFORM
/*