Skip to content

Commit

Permalink
jehanne: purge syscall macros: s/rfork/sys_rfork/
Browse files Browse the repository at this point in the history
  • Loading branch information
Shamar committed Nov 27, 2019
1 parent dddf369 commit 4e2ce81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jehanne.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ static const char __rcsid[] __attribute__((__used__)) =
"$MirOS: src/bin/mksh/jehanne.c,v 1.1 2017/12/22 16:30:00 tg Exp $";

#include <u.h>
#include <lib9.h>
#include <libc.h>
#include <posix.h>

void
__application_newlib_init(int argc, char *argv[])
{
rfork(RFFDG | RFREND | RFNOTEG);
sys_rfork(RFFDG | RFREND | RFNOTEG);
libposix_emulate_SIGCHLD();
}

0 comments on commit 4e2ce81

Please sign in to comment.