mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
13 lines
154 B
C++
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);
|
|
}
|
|
|
|
}
|