mirror of
https://github.com/pret/agbcc.git
synced 2026-03-21 17:44:20 -05:00
16 lines
177 B
C
Executable File
16 lines
177 B
C
Executable File
char msg[] = "No vfork available - aborting\n";
|
|
vfork()
|
|
{
|
|
write(1, msg, sizeof(msg));
|
|
}
|
|
|
|
sigsetmask()
|
|
{
|
|
/* no signals support in go32 (yet) */
|
|
}
|
|
|
|
waitpid()
|
|
{
|
|
return -1;
|
|
}
|