11 /* char *safe_getenv(const name)
14 /* The \fBsafe_getenv\fR() routine reads the named variable from the
15 /* environment, provided that the unsafe() routine agrees.
17 /* unsafe(3), detect non-user privileges
21 /* The Secure Mailer license must be distributed with this software.
24 /* IBM T.J. Watson Research
26 /* Yorktown Heights, NY 10598, USA
34 /* Utility library. */
38 /* safe_getenv - read environment variable with guard */
40 char *safe_getenv(const char *name
)
42 return (unsafe() == 0 ? getenv(name
) : 0);