-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Fix: | ||
arg_int.c:60:12: error: implicitly declaring library function 'isspace' with type 'int (int)' [-Werror,-Wimplicit-function-declaration] | ||
arg_int.c:89:8: error: implicitly declaring library function 'toupper' with type 'int (int)' [-Werror,-Wimplicit-function-declaration] | ||
--- src/arg_int.c.orig 2011-01-10 04:44:01.000000000 -0600 | ||
+++ src/arg_int.c 2021-03-05 08:37:44.000000000 -0600 | ||
@@ -24,6 +24,7 @@ | ||
#include "config.h" | ||
#endif | ||
|
||
+#include <ctype.h> | ||
/* #ifdef HAVE_STDLIB_H */ | ||
#include <stdlib.h> | ||
/* #endif */ |