headers: include-what-you-use fixes

Usage of includes are set up the way found to be in use, with a help of
magnificent utility.

http://code.google.com/p/include-what-you-use/

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2011-06-08 20:59:56 +02:00
parent 4c9f177b2e
commit e299e7fce2
9 changed files with 25 additions and 48 deletions

View file

@ -28,9 +28,9 @@
extern void exit();
extern char *malloc();
#endif /* STDC_HEADERS */
#include <errno.h>
#include <err.h>
#include <stdarg.h>
#include <errno.h>
#include <stddef.h>
#ifdef HAVE_STRING_H
#include <string.h>
#else