summaryrefslogtreecommitdiff
path: root/LibC/ulimit.cpp
blob: c16a06fe1ae98ba1a1f83b5e7934b5dd8d988557 (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_NOT_REACHED();
}

}