Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes:
| It seems that CC defines many (all?) C functions in std namespace. How
| are we going to handle that? Does adding 'using' directives make sense
| on other compilers?
note that it is correct to put the C prototypes into std::.
| putenv() needs a char const * argument in all OS I've checked _except_
| solaris 7 which wants char * (solaris 2.6 uses char const *). I really
| do not know what to do about that... It seems that putenv() is not
| standard at all. Should we prefer using setenv()?
AFAIK putenv is posix, and setenv is bsd.
Lgb