mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 20:17:44 +00:00
Stub out a bunch more functions to get closer to that sweet bash build.
This commit is contained in:
parent
e48182d91b
commit
f394e3486a
14 changed files with 114 additions and 1 deletions
|
@ -5,7 +5,6 @@
|
|||
|
||||
__BEGIN_DECLS
|
||||
|
||||
|
||||
#define NCCS 32
|
||||
|
||||
typedef uint32_t tcflag_t;
|
||||
|
@ -19,6 +18,9 @@ struct termios {
|
|||
cc_t c_cc[NCCS];
|
||||
};
|
||||
|
||||
int tcgetattr(int fd, struct termios*);
|
||||
int tcsetattr(int fd, int optional_actions, const struct termios*);
|
||||
|
||||
/* c_cc characters */
|
||||
#define VINTR 0
|
||||
#define VQUIT 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue