svn commit: r247897 - stable/8/tools/tools/cxgbetool

Navdeep Parhar np at FreeBSD.org
Wed Mar 6 18:45:12 UTC 2013


Author: np
Date: Wed Mar  6 18:45:11 2013
New Revision: 247897
URL: http://svnweb.freebsd.org/changeset/base/247897

Log:
  MFC r247854:
  Fix compile warning by including ctype.h for isdigit().

Modified:
  stable/8/tools/tools/cxgbetool/cxgbetool.c
Directory Properties:
  stable/8/tools/tools/cxgbetool/   (props changed)

Modified: stable/8/tools/tools/cxgbetool/cxgbetool.c
==============================================================================
--- stable/8/tools/tools/cxgbetool/cxgbetool.c	Wed Mar  6 18:44:45 2013	(r247896)
+++ stable/8/tools/tools/cxgbetool/cxgbetool.c	Wed Mar  6 18:45:11 2013	(r247897)
@@ -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>


More information about the svn-src-all mailing list