mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-14 22:31:29 +03:00
13 lines
158 B
C++
13 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();
|
|
}
|
|
}
|