extern char **environ;
-char *index();
+char *strchr();
char *malloc();
/****************************************************************/
/* Find the length of the "NAME=" */
- temp = index(entry,'=');
+ temp = strchr(entry,'=');
if ( temp == 0 )
return( -1 );