Return value of exit should be void.

This commit is contained in:
Shinichiro Hamaji 2009-04-18 23:55:51 +09:00
parent 48ae0c0468
commit 859da934e0
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ void *realloc(void *ptr, size_t size);
int atoi(const char *nptr);
long int strtol(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 */
typedef struct __FILE FILE;