Add ispunct() to LibC + some minor cleanups.

This commit is contained in:
Andreas Kling 2018-11-11 00:44:04 +01:00
commit 7cc4caee4f
Notes: sideshowbarker 2024-07-19 16:11:15 +09:00
5 changed files with 16 additions and 2 deletions

View file

@ -7,7 +7,7 @@ int setjmp(jmp_buf)
assert(false);
}
void longjmp(jmp_buf, int val)
void longjmp(jmp_buf, int)
{
assert(false);
}