svn commit: r247896 - stable/9/tools/tools/cxgbetool

Navdeep Parhar np at FreeBSD.org
Wed Mar 6 18:44:46 UTC 2013


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

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

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

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