1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:48:12 +00:00

Rage hacking to get bash to run. It finally runs. So cool! :^)

This commit is contained in:
Andreas Kling 2018-11-11 15:36:40 +01:00
parent 9b70808ab5
commit d5d45d1088
31 changed files with 567 additions and 61 deletions

View file

@ -1,3 +1,4 @@
#include <assert.h>
#include <errno.h>
#include <termios.h>
#include <Kernel/Syscall.h>
@ -16,5 +17,12 @@ int tcsetattr(int fd, int optional_actions, const struct termios* t)
__RETURN_WITH_ERRNO(rc, rc, -1);
}
int tcflow(int fd, int action)
{
(void) fd;
(void) action;
assert(false);
}
}