1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 20:24:57 +00:00
serenity/LibC/ulimit.cpp

14 lines
155 B
C++

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