diff options
| author | cgd <cgd@NetBSD.org> | 2001-01-16 02:44:43 +0000 |
|---|---|---|
| committer | cgd <cgd@NetBSD.org> | 2001-01-16 02:44:43 +0000 |
| commit | bcc8ec9959e7b01e313d813067bfb43a3ad70551 (patch) | |
| tree | 0666ba2a24cd963e81eb47778ecc6058eaf1403a /libexec/makekey | |
| parent | fdfcf1962d191e5737c5d71dc184987a79fe4d20 (diff) | |
include stdlib.h for prototypes (typically for exit()).
Diffstat (limited to 'libexec/makekey')
| -rw-r--r-- | libexec/makekey/makekey.c | 5 |
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); |
