summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2004-01-13 08:17:42 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2004-01-13 08:17:42 +0000
commit7f7f0ff52ac3bec2cf1fec971e8f1a3e3a370f36 (patch)
tree5a5c5026fe19a2f6e181dc91c83db5a445aed01e /usr.bin
parent5791d7704f6cf48aecab7e8c80bffa90faf826d2 (diff)
Add missing include. From espie@
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/dc/dc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/dc/dc.c b/usr.bin/dc/dc.c
index 04f9351b8b3..e744836f6f2 100644
--- a/usr.bin/dc/dc.c
+++ b/usr.bin/dc/dc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dc.c,v 1.4 2003/12/01 09:13:24 otto Exp $ */
+/* $OpenBSD: dc.c,v 1.5 2004/01/13 08:17:41 otto Exp $ */
/*
* Copyright (c) 2003, Otto Moerbeek <otto@drijf.net>
@@ -17,10 +17,11 @@
*/
#ifndef lint
-static const char rcsid[] = "$OpenBSD: dc.c,v 1.4 2003/12/01 09:13:24 otto Exp $";
+static const char rcsid[] = "$OpenBSD: dc.c,v 1.5 2004/01/13 08:17:41 otto Exp $";
#endif /* not lint */
#include <err.h>
+#include <stdlib.h>
#include <unistd.h>
#include "extern.h"