all: consistently include config.h

config.h should be included from every .c file, and it should be
included before any other include. Fix that.

(As a side effect of how I did this, this also changes us to
consistently use "config.h" rather than <config.h>. To the extent that
it matters [which is not much], quotes are more correct anyway, since
we're talking about a file in our own build tree, not a system
include.)
This commit is contained in:
Dan Winship
2014-11-13 10:07:02 -05:00
parent 125f7c4d40
commit 3bfb163a74
333 changed files with 639 additions and 96 deletions

View File

@@ -19,7 +19,8 @@
* Copyright (C) 2005 - 2008 Novell, Inc.
*/
#include <config.h>
#include "config.h"
#include <stdio.h>
#include <errno.h>
#include <fcntl.h>