2018-11-11 12:36:40 -02:00
|
|
|
#include <assert.h>
|
2019-06-07 06:49:03 -03:00
|
|
|
#include <ulimit.h>
|
2018-11-11 12:36:40 -02:00
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
|
|
long ulimit(int cmd, long newlimit)
|
|
|
|
|
{
|
2019-06-07 06:49:03 -03:00
|
|
|
(void)cmd;
|
|
|
|
|
(void)newlimit;
|
2019-04-23 16:52:02 -03:00
|
|
|
ASSERT_NOT_REACHED();
|
2019-09-29 16:02:13 -03:00
|
|
|
return -1;
|
2018-11-11 12:36:40 -02:00
|
|
|
}
|
|
|
|
|
}
|