diff options
author | Darren Tucker <dtucker@dtucker.net> | 2022-08-08 04:17:04 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2022-08-08 04:17:04 +0200 |
commit | 7a01f61be8d0aca0e975e7417f26371495fe7674 (patch) | |
tree | f1b392d7b9d724e76e1e87e67aa499178e28291d /openbsd-compat | |
parent | Give unused param a name. (diff) | |
download | openssh-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.c | 4 |
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 /* |