mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-03 13:00:29 +00:00
6d7854919a
Patch from Anonymous.
13 lines
173 B
C++
13 lines
173 B
C++
#include <assert.h>
|
|
#include <ulimit.h>
|
|
|
|
extern "C" {
|
|
|
|
long ulimit(int cmd, long newlimit)
|
|
{
|
|
(void)cmd;
|
|
(void)newlimit;
|
|
ASSERT_NOT_REACHED();
|
|
return -1;
|
|
}
|
|
}
|