mirror of
https://github.com/frida/tinycc
synced 2024-12-25 14:36:49 +03:00
Return value of exit should be void.
This commit is contained in:
parent
48ae0c0468
commit
859da934e0
@ -18,7 +18,7 @@ void *realloc(void *ptr, size_t size);
|
|||||||
int atoi(const char *nptr);
|
int atoi(const char *nptr);
|
||||||
long int strtol(const char *nptr, char **endptr, int base);
|
long int strtol(const char *nptr, char **endptr, int base);
|
||||||
unsigned long int strtoul(const char *nptr, char **endptr, int base);
|
unsigned long int strtoul(const char *nptr, char **endptr, int base);
|
||||||
int exit(int);
|
void exit(int);
|
||||||
|
|
||||||
/* stdio.h */
|
/* stdio.h */
|
||||||
typedef struct __FILE FILE;
|
typedef struct __FILE FILE;
|
||||||
|
Loading…
Reference in New Issue
Block a user