libc: Use fdopen() after calling open() in fopen()

This commit is contained in:
apio 2022-10-17 20:54:09 +02:00
parent 494b48bbe3
commit e17a21dbad

View File

@ -30,14 +30,11 @@ extern "C"
return 0; // FIXME: Implement buffered IO. return 0; // FIXME: Implement buffered IO.
} }
FILE* fopen(const char* pathname, const char*) FILE* fopen(const char* pathname, const char* mode)
{ {
int fd = open(pathname, O_RDWR); // FIXME: Use the mode string. int fd = open(pathname, O_RDWR); // FIXME: Use the mode string.
if (fd < 0) { return 0; } if (fd < 0) { return 0; }
FILE* stream = (FILE*)malloc(sizeof(FILE)); return fdopen(fd, mode);
stream->f_fd = fd;
clearerr(stream);
return stream;
} }
FILE* fdopen(int fd, const char*) FILE* fdopen(int fd, const char*)