Skip to content

Commit

Permalink
Add missing #include to LibArgtable file
Browse files Browse the repository at this point in the history
Clear compiler warning message by adding #include <ctype.h> to one of the files
in LibArgtable.

	modified:   libargtable/arg_int.c
  • Loading branch information
tbowers7 committed Feb 15, 2018
1 parent 19b855a commit 9d7eae9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions libargtable/arg_int.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ USA.

#include "argtable2.h"
#include <limits.h>
#include <ctype.h> // Added 2/15/2018, needed for isspace(), toupper()

/* local error codes */
enum {EMINCOUNT=1,EMAXCOUNT,EBADINT,EOVERFLOW};
Expand Down

0 comments on commit 9d7eae9

Please sign in to comment.