diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2015-01-07 16:05:29 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2015-01-07 16:05:29 +0000 |
commit | 80e9eb282efaab90406cfddbd19f6204dafc880c (patch) | |
tree | ed42fd009fa253a05468bdcc25b5a06d285fe01d /lib | |
parent | fedc0a91a6e34841cfdc4f748b5d767592bea9b2 (diff) |
stupid me. need errno.h
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/crypt/bcrypt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/crypt/bcrypt.c b/lib/libc/crypt/bcrypt.c index dc174f2a4d3..f6ff29b234d 100644 --- a/lib/libc/crypt/bcrypt.c +++ b/lib/libc/crypt/bcrypt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bcrypt.c,v 1.49 2015/01/07 15:46:23 tedu Exp $ */ +/* $OpenBSD: bcrypt.c,v 1.50 2015/01/07 16:05:28 tedu Exp $ */ /* * Copyright (c) 2014 Ted Unangst <tedu@openbsd.org> @@ -34,6 +34,7 @@ #include <sys/types.h> #include <blf.h> #include <ctype.h> +#include <errno.h> #include <pwd.h> #include <stdio.h> #include <stdlib.h> |