summaryrefslogtreecommitdiff
path: root/LibC/ulimit.cpp
blob: 77f551498a45e1cb01f3943c4b339f9c947e6516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <ulimit.h>
#include <assert.h>

extern "C" {

long ulimit(int cmd, long newlimit)
{
    (void) cmd;
    (void) newlimit;
    assert(false);
}

}