diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-02-16 11:08:17 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-02-16 11:08:17 +0000 |
commit | ada543668c9491862bd06f39165cef927948bde4 (patch) | |
tree | 43a89756796fc175424522ac798d2801eeb24856 /lib/libc | |
parent | 610fbac3c989555ba6d19b6d8d80e2caed062ec5 (diff) |
need errno.h
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/db/hash/ndbm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/db/hash/ndbm.c b/lib/libc/db/hash/ndbm.c index 3d68ba0fec4..e7a9d1c1cf5 100644 --- a/lib/libc/db/hash/ndbm.c +++ b/lib/libc/db/hash/ndbm.c @@ -35,7 +35,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: ndbm.c,v 1.4 1997/02/15 23:44:31 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: ndbm.c,v 1.5 1997/02/16 11:08:16 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -47,6 +47,7 @@ static char rcsid[] = "$OpenBSD: ndbm.c,v 1.4 1997/02/15 23:44:31 deraadt Exp $" #include <stdio.h> #include <string.h> +#include <errno.h> #include <ndbm.h> #include "hash.h" |