diff options
author | deraadt <> | 2015-01-16 16:48:51 +0000 |
---|---|---|
committer | deraadt <> | 2015-01-16 16:48:51 +0000 |
commit | 1e4765ffa2cc484d6fa2c51e54ba927cbae67f13 (patch) | |
tree | 2f04e8a0f019b4b73805acf11a1e5138c9b9f37f /src/lib/libc/crypt | |
parent | d23934efb8e7adaa63d4eb5752505a40e4b1f285 (diff) | |
download | openbsd-1e4765ffa2cc484d6fa2c51e54ba927cbae67f13.tar.gz openbsd-1e4765ffa2cc484d6fa2c51e54ba927cbae67f13.tar.bz2 openbsd-1e4765ffa2cc484d6fa2c51e54ba927cbae67f13.zip |
Move to the <limits.h> universe.
review by millert, binary checking process with doug, concept with guenther
Diffstat (limited to 'src/lib/libc/crypt')
-rw-r--r-- | src/lib/libc/crypt/arc4random.c | 3 | ||||
-rw-r--r-- | src/lib/libc/crypt/crypt.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/libc/crypt/arc4random.c b/src/lib/libc/crypt/arc4random.c index 1106f06707..75cdff3bc4 100644 --- a/src/lib/libc/crypt/arc4random.c +++ b/src/lib/libc/crypt/arc4random.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: arc4random.c,v 1.51 2015/01/15 06:57:18 deraadt Exp $ */ | 1 | /* $OpenBSD: arc4random.c,v 1.52 2015/01/16 16:48:51 deraadt Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 1996, David Mazieres <dm@uun.org> | 4 | * Copyright (c) 1996, David Mazieres <dm@uun.org> |
@@ -31,7 +31,6 @@ | |||
31 | #include <string.h> | 31 | #include <string.h> |
32 | #include <unistd.h> | 32 | #include <unistd.h> |
33 | #include <sys/types.h> | 33 | #include <sys/types.h> |
34 | #include <sys/param.h> | ||
35 | #include <sys/time.h> | 34 | #include <sys/time.h> |
36 | 35 | ||
37 | #define KEYSTREAM_ONLY | 36 | #define KEYSTREAM_ONLY |
diff --git a/src/lib/libc/crypt/crypt.c b/src/lib/libc/crypt/crypt.c index c7ff5d970b..7d21d4fbc3 100644 --- a/src/lib/libc/crypt/crypt.c +++ b/src/lib/libc/crypt/crypt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: crypt.c,v 1.25 2014/12/08 20:36:18 tedu Exp $ */ | 1 | /* $OpenBSD: crypt.c,v 1.26 2015/01/16 16:48:51 deraadt Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * FreeSec: libcrypt | 4 | * FreeSec: libcrypt |
@@ -47,7 +47,6 @@ | |||
47 | */ | 47 | */ |
48 | 48 | ||
49 | #include <sys/types.h> | 49 | #include <sys/types.h> |
50 | #include <sys/param.h> | ||
51 | #include <pwd.h> | 50 | #include <pwd.h> |
52 | #include <unistd.h> | 51 | #include <unistd.h> |
53 | #include <string.h> | 52 | #include <string.h> |