mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 23:27:43 +00:00
LibC: Stub out fmemopen()
This commit is contained in:
parent
aaa52da97d
commit
18f68d1aea
2 changed files with 8 additions and 0 deletions
|
@ -57,6 +57,7 @@ int remove(const char* pathname);
|
|||
FILE* fdopen(int fd, const char* mode);
|
||||
FILE* fopen(const char* pathname, const char* mode);
|
||||
FILE* freopen(const char* pathname, const char* mode, FILE*);
|
||||
FILE* fmemopen(void* buf, size_t size, const char* mode);
|
||||
void flockfile(FILE* filehandle);
|
||||
void funlockfile(FILE* filehandle);
|
||||
int fclose(FILE*);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue