C/C++
child.asc
Associated article: A Portable Library for Executing Child Processes
Tags: C/C++ Parallel
_A PORTABLE LIBRARY FOR EXECUTING CHILD PROCESSES_
by Matt Weisfeld
[LISTING ONE]
#include <stdio.h>
#ifdef DOS
#include <process.h>
#include <stdlib.h>
#endif
#include "exec.h"
int _execv(char **argv)
{
int ...


