svn commit: r247854 - head/tools/tools/cxgbetool
Navdeep Parhar
np at FreeBSD.org
Tue Mar 5 19:37:30 UTC 2013
Author: np
Date: Tue Mar 5 19:37:29 2013
New Revision: 247854
URL: http://svnweb.freebsd.org/changeset/base/247854
Log:
Fix compile warning by including ctype.h for isdigit().
MFC after: 1 day
Modified:
head/tools/tools/cxgbetool/cxgbetool.c
Modified: head/tools/tools/cxgbetool/cxgbetool.c
==============================================================================
--- head/tools/tools/cxgbetool/cxgbetool.c Tue Mar 5 19:20:34 2013 (r247853)
+++ head/tools/tools/cxgbetool/cxgbetool.c Tue Mar 5 19:37:29 2013 (r247854)
@@ -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-head
mailing list