aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/posix/system.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/posix/system.c b/sysdeps/posix/system.c
index 1df92203de..bf84d2fb1e 100644
--- a/sysdeps/posix/system.c
+++ b/sysdeps/posix/system.c
@@ -85,12 +85,12 @@ __libc_system (const char *line)
return -1;
}
}
-#define UNBLOCK __sigprocmask (SIG_SETMASK, &omask, (sigset_t *) NULL)
+# define UNBLOCK  __sigprocmask (SIG_SETMASK, &omask, (sigset_t *) NULL)
#else
-#define UNBLOCK 0
+# define UNBLOCK 0
#endif
- pid = __vfork ();
+ pid = __fork ();
if (pid == (pid_t) 0)
{
/* Child side. */