mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 03:47:35 +00:00
Rage hacking to get bash to run. It finally runs. So cool! :^)
This commit is contained in:
parent
9b70808ab5
commit
d5d45d1088
31 changed files with 567 additions and 61 deletions
14
LibC/ulimit.cpp
Normal file
14
LibC/ulimit.cpp
Normal file
|
@ -0,0 +1,14 @@
|
|||
#include <ulimit.h>
|
||||
#include <assert.h>
|
||||
|
||||
extern "C" {
|
||||
|
||||
long ulimit(int cmd, long newlimit)
|
||||
{
|
||||
(void) cmd;
|
||||
(void) newlimit;
|
||||
assert(false);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue