Include <string.h> to get memset and strcmp prototype.

Sort includes.

This is now WARNS=2 clean, bump WARNS to keep it clean.
This commit is contained in:
Johan Karlsson 2004-07-16 11:07:07 +00:00
parent ac1ed13853
commit 7eaedc0cd3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=132253
2 changed files with 3 additions and 1 deletions

View File

@ -7,5 +7,6 @@ MAN= hexdump.1 od.1
MLINKS= hexdump.1 hd.1
LINKS= ${BINDIR}/hexdump ${BINDIR}/od
LINKS+= ${BINDIR}/hexdump ${BINDIR}/hd
WARNS?= 2
.include <bsd.prog.mk>

View File

@ -40,10 +40,11 @@ __FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <assert.h>
#include <stdio.h>
#include <ctype.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <wchar.h>
#include <wctype.h>
#include "hexdump.h"