On Tuesday 11 June 2002 2:20 pm, Lars Gullik Bjønnes wrote: > | extern "C" { > | + extern FILE *popen(const char *, const char *); > | + extern int pclose(FILE *); > | > | namespace std { > | extern int fclose (FILE *); > | } > | } > | > | Currently, it does not declare those routines that are not moved into > | namespace std. > > popen and pclose are not mentioned in the C++ standard and should > thus, not be in namespace std:: but in the global namespace instead.
So my suggested fix is fine. Good. A