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

extern "C" {

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

}