1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 03:14:58 +00:00
serenity/LibC/ulimit.cpp

13 lines
154 B
C++

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