1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 04:25:07 +00:00
serenity/Libraries/LibC/ulimit.cpp
Andreas Kling 6d7854919a LibC: Some build fixes for strange platforms
Patch from Anonymous.
2019-09-29 21:02:13 +02:00

13 lines
173 B
C++

#include <assert.h>
#include <ulimit.h>
extern "C" {
long ulimit(int cmd, long newlimit)
{
(void)cmd;
(void)newlimit;
ASSERT_NOT_REACHED();
return -1;
}
}