summaryrefslogtreecommitdiff
path: root/libexec/makekey
diff options
context:
space:
mode:
authorcgd <cgd@NetBSD.org>2001-01-16 02:44:43 +0000
committercgd <cgd@NetBSD.org>2001-01-16 02:44:43 +0000
commitbcc8ec9959e7b01e313d813067bfb43a3ad70551 (patch)
tree0666ba2a24cd963e81eb47778ecc6058eaf1403a /libexec/makekey
parentfdfcf1962d191e5737c5d71dc184987a79fe4d20 (diff)
include stdlib.h for prototypes (typically for exit()).
Diffstat (limited to 'libexec/makekey')
-rw-r--r--libexec/makekey/makekey.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libexec/makekey/makekey.c b/libexec/makekey/makekey.c
index 38094a8a42c..226978a2c06 100644
--- a/libexec/makekey/makekey.c
+++ b/libexec/makekey/makekey.c
@@ -1,4 +1,4 @@
-/* $NetBSD: makekey.c,v 1.5 2000/12/17 20:53:03 wiz Exp $ */
+/* $NetBSD: makekey.c,v 1.6 2001/01/16 02:44:43 cgd Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -40,13 +40,14 @@ __COPYRIGHT("@(#) Copyright (c) 1990, 1993\n\
#if 0
static char sccsid[] = "from: @(#)makekey.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: makekey.c,v 1.5 2000/12/17 20:53:03 wiz Exp $");
+__RCSID("$NetBSD: makekey.c,v 1.6 2001/01/16 02:44:43 cgd Exp $");
#endif
#endif /* not lint */
#include <err.h>
#include <errno.h>
#include <string.h>
+#include <stdlib.h>
#include <unistd.h>
static void get(char *, int);