From 80cf60efec79ac63cc3a26c6ad8f86790a385847 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 15 Apr 2020 09:48:32 +0200 Subject: Canonicalize config.h include Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif --- cpukit/dev/i2c/fpga-i2c-slave.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/dev/i2c/fpga-i2c-slave.c') diff --git a/cpukit/dev/i2c/fpga-i2c-slave.c b/cpukit/dev/i2c/fpga-i2c-slave.c index cf00a57b41..420e5e74d0 100644 --- a/cpukit/dev/i2c/fpga-i2c-slave.c +++ b/cpukit/dev/i2c/fpga-i2c-slave.c @@ -12,8 +12,8 @@ * https://github.com/oetr/FPGA-I2C-Slave */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include -- cgit v1.2.3