blob: fec94e0ad57a914519871877b40a3f75e048b127 (
plain)
1
2
3
4
5
6
|
/* We roll our own popen()/pclose() in OS/2.
Thanks, Glenn Gribble! */
FILE *popen (const char *cmd, const char *mode);
int popenRW (char **cmd, int *pipes);
int pclose (FILE *stream);
|