Add <strings.h> to pick up definition of bzero.

This commit is contained in:
R. Bernstein
2011-10-19 22:38:48 -04:00
parent 8002d97db8
commit 34dc6a0973

View File

@@ -1,5 +1,6 @@
/*
Copyright (C) 2003, 2004, 2005, 2008 Rocky Bernstein <rocky@gnu.org>
Copyright (C) 2003, 2004, 2005, 2008, 2011
Rocky Bernstein <rocky@gnu.org>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -34,6 +35,9 @@
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include <ctype.h>
#ifdef HAVE_STDARG_H