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
commit 6d7854919a
Notes: sideshowbarker 2024-07-19 11:52:58 +09:00
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;
}
}