mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 20:34:59 +00:00
12 lines
158 B
C++
12 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();
|
|
}
|
|
}
|