mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-21 16:58:58 +00:00
More work towards getting bash to build.
Implemented some syscalls: dup(), dup2(), getdtablesize(). FileHandle is now a retainable, since that's needed for dup()'ed fd's. I didn't really test any of this beyond a basic smoke check.
This commit is contained in:
parent
82f84bab11
commit
9f2b9c82bf
Notes:
sideshowbarker
2024-07-19 18:33:20 +09:00
Author: https://github.com/awesomekling
Commit: 9f2b9c82bf
17 changed files with 114 additions and 23 deletions
|
@ -29,6 +29,7 @@ int fileno(FILE*);
|
|||
int fgetc(FILE*);
|
||||
int getc(FILE*);
|
||||
int getchar();
|
||||
FILE* fdopen(int fd, const char* mode);
|
||||
FILE* fopen(const char* pathname, const char* mode);
|
||||
int fclose(FILE*);
|
||||
void rewind(FILE*);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue