diff options
Diffstat (limited to 'jim-posix.c')
-rw-r--r-- | jim-posix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jim-posix.c b/jim-posix.c index 1013121..7fedf66 100644 --- a/jim-posix.c +++ b/jim-posix.c @@ -37,7 +37,7 @@ static void Jim_PosixSetError(Jim_Interp *interp) Jim_SetResultString(interp, strerror(errno), -1); } -#ifdef HAVE_FORK +#if defined(HAVE_FORK) && !defined(HAVE_NO_FORK) static int Jim_PosixForkCommand(Jim_Interp *interp, int argc, Jim_Obj *const *argv) { pid_t pid; |