Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 5 Mar 2013 19:37:29 +0000 (UTC)
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r247854 - head/tools/tools/cxgbetool
Message-ID:  <201303051937.r25JbTZh001118@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303051937.r25JbTZh001118>