diff options
author | peter <peter@FreeBSD.org> | 1997-04-25 06:42:57 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1997-04-25 06:42:57 +0000 |
commit | 93c713af2b374e6a47e2da04b3738abbb1201e0b (patch) | |
tree | 7ecf32e5461b2870a43dd32b2569ae01fe2f4354 /contrib | |
parent | d4f450005cff0dfd6bd11b879485ddcd44eb1872 (diff) | |
download | FreeBSD-src-93c713af2b374e6a47e2da04b3738abbb1201e0b.zip FreeBSD-src-93c713af2b374e6a47e2da04b3738abbb1201e0b.tar.gz |
correct vfork()/exit() to vfork()/_exit(). This is far more important
now that vfork() actually works in FreeBSD for the first time.
Spotted by: se
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/gcc/gcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gcc/gcc.c b/contrib/gcc/gcc.c index 5419bd0..c40097e 100644 --- a/contrib/gcc/gcc.c +++ b/contrib/gcc/gcc.c @@ -2098,7 +2098,7 @@ pexecute (search_flag, program, argv, not_last) /* Exec the program. */ (*func) (program, argv); perror_exec (program); - exit (-1); + _exit (1); /* NOTREACHED */ return 0; |