Add include of <string.h> for strlen() prototype.

This commit is contained in:
Craig Rodrigues 2015-11-16 16:52:56 +00:00
parent f6fe55842b
commit 28b524fb19
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=290933

View File

@ -26,6 +26,7 @@
#include <stdlib.h>
#include <err.h> /* XXX for debug output */
#include <stdio.h> /* XXX for debug output */
#include <string.h>
#include <strings.h>
#include <unistd.h>
#include <stdarg.h>