mescc: Tinycc support: remove stub.

* mlibc/include/stdio.h (remove): Declare.
* mlibc/libc-mes+tcc.c (remove): Add stub.
This commit is contained in:
Jan Nieuwenhuizen 2017-07-24 20:19:49 +02:00
parent 2914b74aa4
commit 8296c8ec2c
2 changed files with 7 additions and 0 deletions

View File

@ -111,6 +111,7 @@ int getchar ();
int printf (char const* format, ...);
int putchar (int c);
int puts (char const* s);
int remove (char const *file_name);
int sscanf (char const *str, const char *format, ...);
int snprintf(char *str, size_t size, char const *format, ...);
int sprintf (char *str, char const* format, ...);

View File

@ -166,6 +166,12 @@ qsort (void *base, size_t nmemb, size_t size, int (*compar)(void const *, void c
{
}
int
remove (char const *file_name)
{
return 0;
}
int
setjmp (jmp_buf env)
{