7 lines
60 B
C
7 lines
60 B
C
extern int fork();
|
|
|
|
int vfork()
|
|
{
|
|
return (fork());
|
|
}
|