LibC: implement close

This commit is contained in:
2023-06-11 01:10:28 +03:00
parent 52c4eebd77
commit f0b22c48b2
2 changed files with 6 additions and 1 deletions

View File

@@ -52,7 +52,7 @@ char* ctermid(char* buffer)
int fclose(FILE* file)
{
if (syscall(SYS_CLOSE, file->fd) < 0)
if (close(file->fd) == -1)
return EOF;
file->fd = -1;
return 0;