1 /* $Id: getenv.c,v 1.1 1996-10-05 19:09:31 phil Exp $ */
2 
3 /* dummy getenv() function for snolib/host.c */
4 
5 char *
getenv(str)6 getenv( str )
7     char *str;
8 {
9     return (char *)0;			/* NULL */
10 }
11