diff options
author | np <np@FreeBSD.org> | 2013-03-05 19:37:29 +0000 |
---|---|---|
committer | np <np@FreeBSD.org> | 2013-03-05 19:37:29 +0000 |
commit | b3ca7007e70ec0761652adc32ca4eed924caba43 (patch) | |
tree | 7f0a0fb9de7a15f404d4d754956c528184795dc1 | |
parent | 9f9f488fa5845b3aa84eb2b3232f86b8992df4f4 (diff) | |
download | FreeBSD-src-b3ca7007e70ec0761652adc32ca4eed924caba43.zip FreeBSD-src-b3ca7007e70ec0761652adc32ca4eed924caba43.tar.gz |
Fix compile warning by including ctype.h for isdigit().
MFC after: 1 day
-rw-r--r-- | tools/tools/cxgbetool/cxgbetool.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/tools/cxgbetool/cxgbetool.c b/tools/tools/cxgbetool/cxgbetool.c index 39e7376..32f6d26 100644 --- a/tools/tools/cxgbetool/cxgbetool.c +++ b/tools/tools/cxgbetool/cxgbetool.c @@ -31,6 +31,7 @@ __FBSDID("$FreeBSD$"); #include <stdint.h> #include <stdlib.h> #include <unistd.h> +#include <ctype.h> #include <errno.h> #include <err.h> #include <fcntl.h> |