diff options
author | chl <> | 2014-05-17 15:18:06 +0000 |
---|---|---|
committer | chl <> | 2014-05-17 15:18:06 +0000 |
commit | 1ceb1e2391a5ef5b4ebb8a4edd795674fac9ed9a (patch) | |
tree | b83eba9aa6c4c2511dbb8c703fda93230ad493df | |
parent | 1751b5188cc8ed3fea8bc02d09fd547d8bfd27e8 (diff) | |
download | openbsd-1ceb1e2391a5ef5b4ebb8a4edd795674fac9ed9a.tar.gz openbsd-1ceb1e2391a5ef5b4ebb8a4edd795674fac9ed9a.tar.bz2 openbsd-1ceb1e2391a5ef5b4ebb8a4edd795674fac9ed9a.zip |
Add missing header needed by isdigit().
While there, sort headers.
ok tedu@
-rw-r--r-- | src/lib/libc/crypt/bcrypt.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lib/libc/crypt/bcrypt.c b/src/lib/libc/crypt/bcrypt.c index 87d47b816e..aab26fe2cb 100644 --- a/src/lib/libc/crypt/bcrypt.c +++ b/src/lib/libc/crypt/bcrypt.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bcrypt.c,v 1.43 2014/05/06 15:59:24 tedu Exp $ */ | 1 | /* $OpenBSD: bcrypt.c,v 1.44 2014/05/17 15:18:06 chl Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> | 4 | * Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> |
@@ -31,12 +31,13 @@ | |||
31 | * | 31 | * |
32 | */ | 32 | */ |
33 | 33 | ||
34 | #include <sys/types.h> | ||
35 | #include <blf.h> | ||
36 | #include <ctype.h> | ||
37 | #include <pwd.h> | ||
34 | #include <stdio.h> | 38 | #include <stdio.h> |
35 | #include <stdlib.h> | 39 | #include <stdlib.h> |
36 | #include <sys/types.h> | ||
37 | #include <string.h> | 40 | #include <string.h> |
38 | #include <pwd.h> | ||
39 | #include <blf.h> | ||
40 | 41 | ||
41 | /* This implementation is adaptable to current computing power. | 42 | /* This implementation is adaptable to current computing power. |
42 | * You can have up to 2^31 rounds which should be enough for some | 43 | * You can have up to 2^31 rounds which should be enough for some |