diff options
author | bcook <> | 2019-01-20 02:59:07 +0000 |
---|---|---|
committer | bcook <> | 2019-01-20 02:59:07 +0000 |
commit | f93645fdb8c9e391f6fc6050e68517b1bf8e5898 (patch) | |
tree | 281d3debda8ae6e210810dad8d9778e3419a57ad /src/lib/libc | |
parent | aba8cbe870ebc65e917562a1897bc104e0bf8237 (diff) | |
download | openbsd-f93645fdb8c9e391f6fc6050e68517b1bf8e5898.tar.gz openbsd-f93645fdb8c9e391f6fc6050e68517b1bf8e5898.tar.bz2 openbsd-f93645fdb8c9e391f6fc6050e68517b1bf8e5898.zip |
include stdint.h over sys/types.h
ok deraadt@ tedu@
Diffstat (limited to 'src/lib/libc')
-rw-r--r-- | src/lib/libc/crypt/arc4random_uniform.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/crypt/arc4random_uniform.c b/src/lib/libc/crypt/arc4random_uniform.c index 23a15e34fd..a18b5b1238 100644 --- a/src/lib/libc/crypt/arc4random_uniform.c +++ b/src/lib/libc/crypt/arc4random_uniform.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: arc4random_uniform.c,v 1.2 2015/09/13 08:31:47 guenther Exp $ */ | 1 | /* $OpenBSD: arc4random_uniform.c,v 1.3 2019/01/20 02:59:07 bcook Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2008, Damien Miller <djm@openbsd.org> | 4 | * Copyright (c) 2008, Damien Miller <djm@openbsd.org> |
@@ -16,7 +16,7 @@ | |||
16 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 16 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #include <sys/types.h> | 19 | #include <stdint.h> |
20 | #include <stdlib.h> | 20 | #include <stdlib.h> |
21 | 21 | ||
22 | /* | 22 | /* |