Return value of exit should be void.
This commit is contained in:
parent
48ae0c0468
commit
859da934e0
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue