Add #include <string.h> to mute warning from clang/gcc about implicitly

declaring strcmp(3)

MFC after: 1 month
Reported by: Jenkins
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
Enji Cooper 2016-02-01 07:09:08 +00:00
parent 5a69be6768
commit 833525a88a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=295118

View file

@ -42,6 +42,7 @@ __FBSDID("$FreeBSD$");
#include <fcntl.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <strings.h>
#include <stdlib.h>
#include <sysexits.h>