Replace <strings.h> with <string.h>. No functions from the former are

used in this file, and strlen() needs to be prototyped by the latter,
for this to compile without warnings.

Reviewed by:	mike
This commit is contained in:
Giorgos Keramidas 2002-06-09 04:15:40 +00:00
parent 33c7d9aaba
commit a7c1ac2f62
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=98061

View File

@ -49,7 +49,7 @@ static const char rcsid[] =
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <strings.h>
#include <string.h>
#include <unistd.h>
#include "dd.h"