diff options
| author | mycroft <mycroft@NetBSD.org> | 1998-07-27 09:58:49 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1998-07-27 09:58:49 +0000 |
| commit | ab22ce8def94cc1f6269890d48bf49b8da25c0b2 (patch) | |
| tree | 1a5e5944e5d75275bca7e55e3efb212a21ffd4ff /include/stdlib.h | |
| parent | 131e74701529ed2d7a8aac4dbd5d54454ae8f067 (diff) | |
If __AUDIT__ is defined, remove some traditional interfaces: gets, sprintf,
vsprintf, tempnam, mktemp, getwd.
Diffstat (limited to 'include/stdlib.h')
| -rw-r--r-- | include/stdlib.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 18f2effc388..5c8c745dfd2 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,4 +1,4 @@ -/* $NetBSD: stdlib.h,v 1.35 1998/07/27 09:33:44 mycroft Exp $ */ +/* $NetBSD: stdlib.h,v 1.36 1998/07/27 09:58:49 mycroft Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -181,7 +181,9 @@ char *setstate __P((char *)); void srandom __P((unsigned long)); int mkstemp __P((char *)); +#ifndef __AUDIT__ char *mktemp __P((char *)); +#endif int setkey __P((const char *)); |
