1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:18:11 +00:00

LibC: Add sigsuspend() stub.

This commit is contained in:
Andreas Kling 2019-05-21 02:22:02 +02:00
parent 52f135fe13
commit 02033873b7

View file

@ -155,4 +155,10 @@ void siglongjmp(jmp_buf env, int val)
longjmp(env, val);
}
int sigsuspend(const sigset_t*)
{
dbgprintf("FIXME: Implement sigsuspend()\n");
ASSERT_NOT_REACHED();
}
}