diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-01-13 08:17:42 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-01-13 08:17:42 +0000 |
commit | 7f7f0ff52ac3bec2cf1fec971e8f1a3e3a370f36 (patch) | |
tree | 5a5c5026fe19a2f6e181dc91c83db5a445aed01e /usr.bin | |
parent | 5791d7704f6cf48aecab7e8c80bffa90faf826d2 (diff) |
Add missing include. From espie@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/dc/dc.c | 5 |
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" |