mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
libc: Strip plentiful trailing whitespace from aarch64+arm makecontext.c
This commit is contained in:
parent
8ef8da882f
commit
1c1f229e91
2 changed files with 10 additions and 10 deletions
|
|
@ -40,16 +40,16 @@ void _ctx_start(void);
|
|||
|
||||
void
|
||||
ctx_done(ucontext_t *ucp)
|
||||
{
|
||||
|
||||
{
|
||||
|
||||
if (ucp->uc_link == NULL) {
|
||||
exit(0);
|
||||
} else {
|
||||
} else {
|
||||
setcontext((const ucontext_t *)ucp->uc_link);
|
||||
abort();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
__weak_reference(__makecontext, makecontext);
|
||||
|
||||
void
|
||||
|
|
|
|||
|
|
@ -43,15 +43,15 @@ extern void _ctx_start(void);
|
|||
|
||||
void
|
||||
ctx_done(ucontext_t *ucp)
|
||||
{
|
||||
|
||||
{
|
||||
|
||||
if (ucp->uc_link == NULL)
|
||||
exit(0);
|
||||
else {
|
||||
else {
|
||||
setcontext((const ucontext_t *)ucp->uc_link);
|
||||
abort();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
__weak_reference(__makecontext, makecontext);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue