Return value of exit should be void.
This commit is contained in:
@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user