1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:17:45 +00:00

LibC: Some build fixes for strange platforms

Patch from Anonymous.
This commit is contained in:
Andreas Kling 2019-09-29 21:02:13 +02:00
parent 3900eebf15
commit 6d7854919a
4 changed files with 11 additions and 4 deletions

View file

@ -8,5 +8,6 @@ long ulimit(int cmd, long newlimit)
(void)cmd;
(void)newlimit;
ASSERT_NOT_REACHED();
return -1;
}
}