mescc: Tinycc support: fdopen stub.
* mlibc/include/stdio.h (fdopen): Declare. * mlibc/libc-mes+tcc.c (fdopen): Add stub.
This commit is contained in:
parent
3e39c56f35
commit
b479d200b3
|
@ -96,6 +96,7 @@ typedef unsigned long size_t;
|
|||
#endif
|
||||
|
||||
int eputs (char const* s);
|
||||
FILE *fdopen (int fd, char const *mode);
|
||||
int fprintf (FILE *stream, char const *format, ...);
|
||||
int fputc (int c, int fd);
|
||||
int fputs (char const* s, int fd);
|
||||
|
|
|
@ -54,6 +54,11 @@ unlink (char const *file_name)
|
|||
|
||||
|
||||
|
||||
FILE *
|
||||
fdopen (int fd, char const *mode)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
fprintf (FILE *stream, char const *format, ...)
|
||||
|
|
Loading…
Reference in a new issue