diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-02-22 06:42:11 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-02-22 06:42:11 +0000 |
commit | fdb3a045215ae0f4100b4c7708a5670099b83442 (patch) | |
tree | 47294792b1c58aa77639fa5ae9e7bbbc31456090 /usr.bin/cvs/fatal.c | |
parent | f33dff9ae83d109c167ed3dc9fde1970dd10bae5 (diff) |
general includes cleanup sweep. ok joris@ niallo@
Diffstat (limited to 'usr.bin/cvs/fatal.c')
-rw-r--r-- | usr.bin/cvs/fatal.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.bin/cvs/fatal.c b/usr.bin/cvs/fatal.c index 159664d4777..0d112eecd29 100644 --- a/usr.bin/cvs/fatal.c +++ b/usr.bin/cvs/fatal.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fatal.c,v 1.8 2006/07/07 17:37:17 joris Exp $ */ +/* $OpenBSD: fatal.c,v 1.9 2007/02/22 06:42:09 otto Exp $ */ /* * Copyright (c) 2002 Markus Friedl. All rights reserved. * @@ -23,10 +23,12 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "includes.h" +#include <sys/stat.h> + +#include <fcntl.h> +#include <stdlib.h> #include "cvs.h" -#include "log.h" #include "remote.h" /* Fatal messages. This function never returns. */ |