diff options
author | David Krause <david@cvs.openbsd.org> | 2003-07-18 22:58:57 +0000 |
---|---|---|
committer | David Krause <david@cvs.openbsd.org> | 2003-07-18 22:58:57 +0000 |
commit | a97d0cab218a8e2bcb331016bbb793706258cd7c (patch) | |
tree | 43715f40b8a124b9280ecb54912cdeb90da2848b /usr.sbin/ypserv/makedbm/makedbm.c | |
parent | f5ba9debe12b4a1d0d88e46e78e8601c76b248d8 (diff) |
add missing includes
ok tedu@
Diffstat (limited to 'usr.sbin/ypserv/makedbm/makedbm.c')
-rw-r--r-- | usr.sbin/ypserv/makedbm/makedbm.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/ypserv/makedbm/makedbm.c b/usr.sbin/ypserv/makedbm/makedbm.c index 8fb78f60872..7afbe919cd6 100644 --- a/usr.sbin/ypserv/makedbm/makedbm.c +++ b/usr.sbin/ypserv/makedbm/makedbm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: makedbm.c,v 1.22 2003/07/15 06:10:46 deraadt Exp $ */ +/* $OpenBSD: makedbm.c,v 1.23 2003/07/18 22:58:56 david Exp $ */ /* * Copyright (c) 1994-97 Mats O Jansson <moj@stacken.kth.se> @@ -27,10 +27,11 @@ */ #ifndef LINT -static const char rcsid[] = "$OpenBSD: makedbm.c,v 1.22 2003/07/15 06:10:46 deraadt Exp $"; +static const char rcsid[] = "$OpenBSD: makedbm.c,v 1.23 2003/07/18 22:58:56 david Exp $"; #endif #include <stdio.h> +#include <stdlib.h> #include <fcntl.h> #include <ctype.h> #include <sys/stat.h> |