1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 20:34:59 +00:00
serenity/LibC/ulimit.cpp
2019-06-07 11:49:03 +02:00

12 lines
158 B
C++

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