Fix compile warning by including ctype.h for isdigit().

MFC after:	1 day
This commit is contained in:
Navdeep Parhar 2013-03-05 19:37:29 +00:00
parent 400c4069a5
commit 144d9d11b8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=247854

View File

@ -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>