mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 20:24:57 +00:00
14 lines
155 B
C++
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);
|
|
}
|
|
|
|
}
|
|
|