mescc: Tinycc support: remove stub.
* mlibc/include/stdio.h (remove): Declare. * mlibc/libc-mes+tcc.c (remove): Add stub.
This commit is contained in:
parent
2914b74aa4
commit
8296c8ec2c
|
@ -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, ...);
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue