summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Droneaud <yann@droneaud.fr>2010-03-04 08:00:39 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2010-03-04 08:00:39 +0100
commitcd8c6abcc8cea54924e55dffe820364ad98a40df (patch)
treeb5f57356ca062c4d11ffebaa4db151011b465bd5
parentd080ffe467f6f58be82ee14dbeed94026002f1e0 (diff)
downloadrsyslog-cd8c6abcc8cea54924e55dffe820364ad98a40df.tar.gz
rsyslog-cd8c6abcc8cea54924e55dffe820364ad98a40df.tar.xz
rsyslog-cd8c6abcc8cea54924e55dffe820364ad98a40df.zip
Includes "config.h" before any other header.
For consistency, ./configure generated "config.h" must be the first header include through out the project. Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
-rw-r--r--runtime/debug.c2
-rw-r--r--tests/ourtail.c1
-rw-r--r--tests/rt-init.c1
-rw-r--r--tools/msggen.c1
-rw-r--r--tools/regexp.c1
-rw-r--r--tools/zpipe.c1
6 files changed, 6 insertions, 1 deletions
diff --git a/runtime/debug.c b/runtime/debug.c
index 9547eee6..20474a9a 100644
--- a/runtime/debug.c
+++ b/runtime/debug.c
@@ -1,4 +1,3 @@
-#include <sys/syscall.h>
/* debug.c
*
* This file proides debug and run time error analysis support. Some of the
@@ -550,6 +549,7 @@ if(pLog == NULL) {
return; /* if we don't know it yet, we can not clean up... */
}
#endif
+#include <sys/syscall.h>
/* we found the last lock entry. We now need to see from which FuncDB we need to
* remove it. This is recorded inside the mutex log entry.
diff --git a/tests/ourtail.c b/tests/ourtail.c
index 4e8a6412..c31babb9 100644
--- a/tests/ourtail.c
+++ b/tests/ourtail.c
@@ -26,6 +26,7 @@
*
* A copy of the GPL can be found in the file "COPYING" in this distribution.
*/
+#include "config.h"
#include <stdio.h>
int main(int __attribute__((unused)) argc, char __attribute__((unused)) *argv[])
diff --git a/tests/rt-init.c b/tests/rt-init.c
index b9c4ce2e..66a9ad32 100644
--- a/tests/rt-init.c
+++ b/tests/rt-init.c
@@ -21,6 +21,7 @@
*
* A copy of the GPL can be found in the file "COPYING" in this distribution.
*/
+#include "config.h"
#include "rsyslog.h"
#include "testbench.h"
#include <stdio.h> /* must be last, else we get a zlib compile error on some platforms */
diff --git a/tools/msggen.c b/tools/msggen.c
index 06244c18..29ade3a7 100644
--- a/tools/msggen.c
+++ b/tools/msggen.c
@@ -21,6 +21,7 @@
* A copy of the GPL can be found in the file "COPYING" in this distribution.
*/
+#include "config.h"
#include <stdio.h>
#include <syslog.h>
diff --git a/tools/regexp.c b/tools/regexp.c
index c8e4c681..e8bba4f4 100644
--- a/tools/regexp.c
+++ b/tools/regexp.c
@@ -26,6 +26,7 @@
*
* A copy of the GPL can be found in the file "COPYING" in this distribution.
*/
+#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/tools/zpipe.c b/tools/zpipe.c
index bde6c5c1..d2278359 100644
--- a/tools/zpipe.c
+++ b/tools/zpipe.c
@@ -22,6 +22,7 @@
files created by rsyslog's zip output writer.
*/
+#include "config.h"
#include <stdio.h>
#include <string.h>
#include <assert.h>