summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2008-02-07 07:50:01 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2008-02-07 07:50:01 +0000
commitc1c9541d8183aa3e11eb2e5a6bbf6da951085560 (patch)
tree954df0b22cd805f47043002cbfcca39d2335a426 /usr.bin
parent1a3435b6166b33892653ad80863c82d2e0395e92 (diff)
exit() needs stdlib.h
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/cvs/checkout.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/checkout.c b/usr.bin/cvs/checkout.c
index 41df8485b4f..c8a3f98043a 100644
--- a/usr.bin/cvs/checkout.c
+++ b/usr.bin/cvs/checkout.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: checkout.c,v 1.129 2008/02/06 22:43:22 joris Exp $ */
+/* $OpenBSD: checkout.c,v 1.130 2008/02/07 07:50:00 xsa Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
*
@@ -23,6 +23,7 @@
#include <errno.h>
#include <fcntl.h>
#include <libgen.h>
+#include <stdlib.h>
#include <string.h>
#include <unistd.h>