diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2007-08-03 21:30:22 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2007-08-03 21:30:22 +0200 |
commit | ec40c7b3c903c53503a81856d35dd326062c3875 (patch) | |
tree | ee2a1c70adb7e7bc668477dae806bfbe5f9005aa /src | |
parent | 9bb579dc612122b3668b346ad41dd9f6d258bf80 (diff) |
use _exit() instead of exit()
Diffstat (limited to 'src')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ pexecvp(const char *file, char *const argv[], pid_t *pid, char *type) { } execvp(file, argv); - exit(127); + _exit(127); } else { /* parent */ if (*type == 'r') { |