LibC: Add stubs that I have locally
I'm not sure if these are used by anything but I would assume so as I have added them :D functions added: - getprotobyname - open_memstream - munlock - lockf - nice - crypt - getsid - wcstoul
This commit is contained in:
@@ -649,6 +649,13 @@ char* gets(char* buffer)
|
||||
}
|
||||
}
|
||||
|
||||
FILE* open_memstream(char** bufp, size_t* sizep)
|
||||
{
|
||||
(void)bufp;
|
||||
(void)sizep;
|
||||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
|
||||
int pclose(FILE* file)
|
||||
{
|
||||
if (file->pid == -1)
|
||||
|
||||
Reference in New Issue
Block a user