libc: Strip plentiful trailing whitespace from aarch64+arm makecontext.c

This commit is contained in:
Jessica Clarke 2023-10-28 02:45:06 +01:00
parent 8ef8da882f
commit 1c1f229e91
2 changed files with 10 additions and 10 deletions

View file

@ -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

View file

@ -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);