Keep disclaiming 16-bit platform support. For now remove WIN16 references

from .h files...
This commit is contained in:
Andy Polyakov
2005-12-18 19:11:37 +00:00
parent 7304956e39
commit be7b4458f2
15 changed files with 16 additions and 76 deletions

View File

@@ -145,7 +145,7 @@ char *_CONF_get_string(const CONF *conf, const char *section, const char *name)
if (v != NULL) return(v->value);
if (strcmp(section,"ENV") == 0)
{
p=Getenv(name);
p=getenv(name);
if (p != NULL) return(p);
}
}
@@ -158,7 +158,7 @@ char *_CONF_get_string(const CONF *conf, const char *section, const char *name)
return(NULL);
}
else
return(Getenv(name));
return(getenv(name));
}
#if 0 /* There's no way to provide error checking with this function, so