mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-15 11:26:32 +02:00
15 lines
155 B
C++
15 lines
155 B
C++
#include <ulimit.h>
|
|
#include <assert.h>
|
|
|
|
extern "C" {
|
|
|
|
long ulimit(int cmd, long newlimit)
|
|
{
|
|
(void) cmd;
|
|
(void) newlimit;
|
|
assert(false);
|
|
}
|
|
|
|
}
|
|
|