diff options
author | Sebastian Huber <sebastian.huber@embedded-brains.de> | 2020-04-15 09:48:32 +0200 |
---|---|---|
committer | Sebastian Huber <sebastian.huber@embedded-brains.de> | 2020-04-16 07:30:00 +0200 |
commit | 80cf60efec79ac63cc3a26c6ad8f86790a385847 (patch) | |
tree | 313926454bd4564d902b5585d9bb50fec5d17535 /cpukit | |
parent | libnetworking: Remove config.h include in header (diff) | |
download | rtems-80cf60efec79ac63cc3a26c6ad8f86790a385847.tar.bz2 |
Canonicalize config.h include
Use the following variant which was already used by most source files:
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
Diffstat (limited to 'cpukit')
1120 files changed, 1316 insertions, 1316 deletions
diff --git a/cpukit/dev/i2c/eeprom.c b/cpukit/dev/i2c/eeprom.c index 97e0f55684..4dc1a1abf9 100644 --- a/cpukit/dev/i2c/eeprom.c +++ b/cpukit/dev/i2c/eeprom.c @@ -20,8 +20,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <dev/i2c/eeprom.h> 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 <dev/i2c/i2c.h> diff --git a/cpukit/dev/i2c/gpio-nxp-pca9535.c b/cpukit/dev/i2c/gpio-nxp-pca9535.c index ea56cee3da..45f3cd3bb2 100644 --- a/cpukit/dev/i2c/gpio-nxp-pca9535.c +++ b/cpukit/dev/i2c/gpio-nxp-pca9535.c @@ -20,8 +20,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <dev/i2c/gpio-nxp-pca9535.h> diff --git a/cpukit/dev/i2c/i2c-bus.c b/cpukit/dev/i2c/i2c-bus.c index 23311ae8e5..472222c4ab 100644 --- a/cpukit/dev/i2c/i2c-bus.c +++ b/cpukit/dev/i2c/i2c-bus.c @@ -20,8 +20,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <dev/i2c/i2c.h> diff --git a/cpukit/dev/i2c/i2c-dev.c b/cpukit/dev/i2c/i2c-dev.c index 680732fa46..6f1eb73bc7 100644 --- a/cpukit/dev/i2c/i2c-dev.c +++ b/cpukit/dev/i2c/i2c-dev.c @@ -20,8 +20,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <dev/i2c/i2c.h> diff --git a/cpukit/dev/i2c/sensor-lm75a.c b/cpukit/dev/i2c/sensor-lm75a.c index 4cc1ae681e..536e2141c3 100644 --- a/cpukit/dev/i2c/sensor-lm75a.c +++ b/cpukit/dev/i2c/sensor-lm75a.c @@ -20,7 +20,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/dev/i2c/switch-nxp-pca9548a.c b/cpukit/dev/i2c/switch-nxp-pca9548a.c index 50e546fd47..76d6853232 100644 --- a/cpukit/dev/i2c/switch-nxp-pca9548a.c +++ b/cpukit/dev/i2c/switch-nxp-pca9548a.c @@ -20,8 +20,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <dev/i2c/switch-nxp-pca9548a.h> diff --git a/cpukit/dev/i2c/ti-ads-16bit-adc.c b/cpukit/dev/i2c/ti-ads-16bit-adc.c index 35e6a7eb63..e8c6a718f3 100644 --- a/cpukit/dev/i2c/ti-ads-16bit-adc.c +++ b/cpukit/dev/i2c/ti-ads-16bit-adc.c @@ -7,8 +7,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <unistd.h> diff --git a/cpukit/dev/i2c/ti-lm25066a.c b/cpukit/dev/i2c/ti-lm25066a.c index 5864470c17..5a93f91684 100644 --- a/cpukit/dev/i2c/ti-lm25066a.c +++ b/cpukit/dev/i2c/ti-lm25066a.c @@ -7,8 +7,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <stdio.h> diff --git a/cpukit/dev/i2c/ti-tmp112.c b/cpukit/dev/i2c/ti-tmp112.c index 0886a4de9c..8c45c837e6 100644 --- a/cpukit/dev/i2c/ti-tmp112.c +++ b/cpukit/dev/i2c/ti-tmp112.c @@ -7,8 +7,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <stdio.h> diff --git a/cpukit/dev/spi/spi-bus.c b/cpukit/dev/spi/spi-bus.c index a3ee6f14fb..5308603216 100644 --- a/cpukit/dev/spi/spi-bus.c +++ b/cpukit/dev/spi/spi-bus.c @@ -20,8 +20,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <dev/spi/spi.h> diff --git a/cpukit/ftpd/ftpd-init.c b/cpukit/ftpd/ftpd-init.c index 7e56b4e593..dcc7b6178c 100644 --- a/cpukit/ftpd/ftpd-init.c +++ b/cpukit/ftpd/ftpd-init.c @@ -6,7 +6,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/ftpd/ftpd.c b/cpukit/ftpd/ftpd.c index 542c455281..c71a13648c 100644 --- a/cpukit/ftpd/ftpd.c +++ b/cpukit/ftpd/ftpd.c @@ -186,7 +186,7 @@ * x5z Filesystem status. *************************************************************************/ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libblock/src/bdbuf.c b/cpukit/libblock/src/bdbuf.c index 1f34618274..a7d471507c 100644 --- a/cpukit/libblock/src/bdbuf.c +++ b/cpukit/libblock/src/bdbuf.c @@ -27,7 +27,7 @@ */ #define RTEMS_BDBUF_TRACE 0 -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif #include <limits.h> diff --git a/cpukit/libblock/src/bdpart-register.c b/cpukit/libblock/src/bdpart-register.c index 30957aa303..66a7498e2c 100644 --- a/cpukit/libblock/src/bdpart-register.c +++ b/cpukit/libblock/src/bdpart-register.c @@ -20,7 +20,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include <stdio.h> diff --git a/cpukit/libblock/src/blkdev-blkstats.c b/cpukit/libblock/src/blkdev-blkstats.c index ca1e0e4b9c..c035ee4ecb 100644 --- a/cpukit/libblock/src/blkdev-blkstats.c +++ b/cpukit/libblock/src/blkdev-blkstats.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/blkdev.h> diff --git a/cpukit/libblock/src/blkdev-imfs.c b/cpukit/libblock/src/blkdev-imfs.c index 881236e167..a6872f442d 100644 --- a/cpukit/libblock/src/blkdev-imfs.c +++ b/cpukit/libblock/src/blkdev-imfs.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <sys/stat.h> diff --git a/cpukit/libblock/src/blkdev-ioctl.c b/cpukit/libblock/src/blkdev-ioctl.c index 2267fb0a62..3e8b081142 100644 --- a/cpukit/libblock/src/blkdev-ioctl.c +++ b/cpukit/libblock/src/blkdev-ioctl.c @@ -10,8 +10,8 @@ * Author: Victor V. Vengerov <vvv@oktet.ru> */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <errno.h> diff --git a/cpukit/libblock/src/blkdev-print-stats.c b/cpukit/libblock/src/blkdev-print-stats.c index aba2173b42..6e43139374 100644 --- a/cpukit/libblock/src/blkdev-print-stats.c +++ b/cpukit/libblock/src/blkdev-print-stats.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/blkdev.h> diff --git a/cpukit/libblock/src/blkdev.c b/cpukit/libblock/src/blkdev.c index 5f17b9b4d7..f19c273d24 100644 --- a/cpukit/libblock/src/blkdev.c +++ b/cpukit/libblock/src/blkdev.c @@ -10,7 +10,7 @@ * Author: Victor V. Vengerov <vvv@oktet.ru> */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libblock/src/diskdevs-init.c b/cpukit/libblock/src/diskdevs-init.c index 29ade438b5..5ed2c71b0f 100644 --- a/cpukit/libblock/src/diskdevs-init.c +++ b/cpukit/libblock/src/diskdevs-init.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/blkdev.h> diff --git a/cpukit/libblock/src/diskdevs.c b/cpukit/libblock/src/diskdevs.c index b735460e58..607f22ad91 100644 --- a/cpukit/libblock/src/diskdevs.c +++ b/cpukit/libblock/src/diskdevs.c @@ -13,7 +13,7 @@ * Copyright (c) 2009, 2017 embedded brains GmbH. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libblock/src/flashdisk.c b/cpukit/libblock/src/flashdisk.c index 37bcd9d150..a3fbbba119 100644 --- a/cpukit/libblock/src/flashdisk.c +++ b/cpukit/libblock/src/flashdisk.c @@ -31,7 +31,7 @@ * extra parameter was avoided. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libblock/src/ide_part_table.c b/cpukit/libblock/src/ide_part_table.c index 5d40130ea4..5f8f2116ed 100644 --- a/cpukit/libblock/src/ide_part_table.c +++ b/cpukit/libblock/src/ide_part_table.c @@ -17,7 +17,7 @@ * */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libblock/src/nvdisk-sram.c b/cpukit/libblock/src/nvdisk-sram.c index 71ef5efbda..6ac709883a 100644 --- a/cpukit/libblock/src/nvdisk-sram.c +++ b/cpukit/libblock/src/nvdisk-sram.c @@ -11,7 +11,7 @@ * Copyright 2007 Chris Johns (chrisj@rtems.org) */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libblock/src/nvdisk.c b/cpukit/libblock/src/nvdisk.c index 693c0b13a0..d2042928ef 100644 --- a/cpukit/libblock/src/nvdisk.c +++ b/cpukit/libblock/src/nvdisk.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libblock/src/ramdisk-init.c b/cpukit/libblock/src/ramdisk-init.c index cc2ad3e0bb..ad71c51b70 100644 --- a/cpukit/libblock/src/ramdisk-init.c +++ b/cpukit/libblock/src/ramdisk-init.c @@ -21,7 +21,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include <stdlib.h> diff --git a/cpukit/libblock/src/ramdisk-register.c b/cpukit/libblock/src/ramdisk-register.c index 6b2dc2c36d..9005cf32a0 100644 --- a/cpukit/libblock/src/ramdisk-register.c +++ b/cpukit/libblock/src/ramdisk-register.c @@ -21,7 +21,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include <rtems/ramdisk.h> diff --git a/cpukit/libblock/src/show_bdbuf.c b/cpukit/libblock/src/show_bdbuf.c index 2b7c8ebd99..29bf3d7e22 100644 --- a/cpukit/libblock/src/show_bdbuf.c +++ b/cpukit/libblock/src/show_bdbuf.c @@ -24,7 +24,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/__assert.c b/cpukit/libcsupport/src/__assert.c index 42ba34e492..8a97864698 100644 --- a/cpukit/libcsupport/src/__assert.c +++ b/cpukit/libcsupport/src/__assert.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/__getpid.c b/cpukit/libcsupport/src/__getpid.c index 9c15910f29..e4e61a5624 100644 --- a/cpukit/libcsupport/src/__getpid.c +++ b/cpukit/libcsupport/src/__getpid.c @@ -5,7 +5,7 @@ * @ingroup libcsupport */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/__gettod.c b/cpukit/libcsupport/src/__gettod.c index 578369b4c3..a658381c2b 100644 --- a/cpukit/libcsupport/src/__gettod.c +++ b/cpukit/libcsupport/src/__gettod.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/__times.c b/cpukit/libcsupport/src/__times.c index 1cdd831f37..7bb7e0e9ca 100644 --- a/cpukit/libcsupport/src/__times.c +++ b/cpukit/libcsupport/src/__times.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/__usrenv.c b/cpukit/libcsupport/src/__usrenv.c index cd191f33ea..5c25eaa8d6 100644 --- a/cpukit/libcsupport/src/__usrenv.c +++ b/cpukit/libcsupport/src/__usrenv.c @@ -17,8 +17,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <sys/stat.h> diff --git a/cpukit/libcsupport/src/_calloc_r.c b/cpukit/libcsupport/src/_calloc_r.c index 58e6a5cba1..aee8cd1cff 100644 --- a/cpukit/libcsupport/src/_calloc_r.c +++ b/cpukit/libcsupport/src/_calloc_r.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/_free_r.c b/cpukit/libcsupport/src/_free_r.c index 3bd6025958..2ff442d5ac 100644 --- a/cpukit/libcsupport/src/_free_r.c +++ b/cpukit/libcsupport/src/_free_r.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/_malloc_r.c b/cpukit/libcsupport/src/_malloc_r.c index 311f6d1669..38c11edc22 100644 --- a/cpukit/libcsupport/src/_malloc_r.c +++ b/cpukit/libcsupport/src/_malloc_r.c @@ -9,7 +9,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/_realloc_r.c b/cpukit/libcsupport/src/_realloc_r.c index 32880802d4..57f0aaf834 100644 --- a/cpukit/libcsupport/src/_realloc_r.c +++ b/cpukit/libcsupport/src/_realloc_r.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/_rename_r.c b/cpukit/libcsupport/src/_rename_r.c index 6f31088278..2c1f48c1a8 100644 --- a/cpukit/libcsupport/src/_rename_r.c +++ b/cpukit/libcsupport/src/_rename_r.c @@ -17,7 +17,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/access.c b/cpukit/libcsupport/src/access.c index bb0b8608aa..cc3dee7ffa 100644 --- a/cpukit/libcsupport/src/access.c +++ b/cpukit/libcsupport/src/access.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/alignedalloc.c b/cpukit/libcsupport/src/alignedalloc.c index 57fff482f1..b552fc2a0f 100644 --- a/cpukit/libcsupport/src/alignedalloc.c +++ b/cpukit/libcsupport/src/alignedalloc.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assoc32tostring.c b/cpukit/libcsupport/src/assoc32tostring.c index 31b08857d3..3fac292360 100644 --- a/cpukit/libcsupport/src/assoc32tostring.c +++ b/cpukit/libcsupport/src/assoc32tostring.c @@ -6,7 +6,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assoclocalbyname.c b/cpukit/libcsupport/src/assoclocalbyname.c index 3904500f24..2fba102abe 100644 --- a/cpukit/libcsupport/src/assoclocalbyname.c +++ b/cpukit/libcsupport/src/assoclocalbyname.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assoclocalbyremote.c b/cpukit/libcsupport/src/assoclocalbyremote.c index 24a86d82c7..ab64ab1feb 100644 --- a/cpukit/libcsupport/src/assoclocalbyremote.c +++ b/cpukit/libcsupport/src/assoclocalbyremote.c @@ -5,7 +5,7 @@ * @ingroup Associativity */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assoclocalbyremotebitfield.c b/cpukit/libcsupport/src/assoclocalbyremotebitfield.c index 23b4c72d45..58c53b079d 100644 --- a/cpukit/libcsupport/src/assoclocalbyremotebitfield.c +++ b/cpukit/libcsupport/src/assoclocalbyremotebitfield.c @@ -3,7 +3,7 @@ * rtems assoc routines */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assocnamebad.c b/cpukit/libcsupport/src/assocnamebad.c index 33691419fb..7e5a327d47 100644 --- a/cpukit/libcsupport/src/assocnamebad.c +++ b/cpukit/libcsupport/src/assocnamebad.c @@ -5,7 +5,7 @@ * @ingroup SET */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assocnamebylocal.c b/cpukit/libcsupport/src/assocnamebylocal.c index 0dd47b86e8..877d133a84 100644 --- a/cpukit/libcsupport/src/assocnamebylocal.c +++ b/cpukit/libcsupport/src/assocnamebylocal.c @@ -5,7 +5,7 @@ * @ingroup Associativity */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assocnamebylocalbitfield.c b/cpukit/libcsupport/src/assocnamebylocalbitfield.c index d8895cbfd5..98e056af9d 100644 --- a/cpukit/libcsupport/src/assocnamebylocalbitfield.c +++ b/cpukit/libcsupport/src/assocnamebylocalbitfield.c @@ -5,7 +5,7 @@ * @ingroup Associativity */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assocnamebyremote.c b/cpukit/libcsupport/src/assocnamebyremote.c index 376ba47ac7..2cacd39b98 100644 --- a/cpukit/libcsupport/src/assocnamebyremote.c +++ b/cpukit/libcsupport/src/assocnamebyremote.c @@ -5,7 +5,7 @@ * @ingroup Associativity */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assocnamebyremotebitfield.c b/cpukit/libcsupport/src/assocnamebyremotebitfield.c index 97876ea6ca..df9278a19c 100644 --- a/cpukit/libcsupport/src/assocnamebyremotebitfield.c +++ b/cpukit/libcsupport/src/assocnamebyremotebitfield.c @@ -5,7 +5,7 @@ * @ingroup Associativity */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assocptrbylocal.c b/cpukit/libcsupport/src/assocptrbylocal.c index a0e7c3ce5b..2627b62873 100644 --- a/cpukit/libcsupport/src/assocptrbylocal.c +++ b/cpukit/libcsupport/src/assocptrbylocal.c @@ -5,7 +5,7 @@ * @ingroup Associativity */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assocptrbyname.c b/cpukit/libcsupport/src/assocptrbyname.c index a01b9cb143..a33b367bcc 100644 --- a/cpukit/libcsupport/src/assocptrbyname.c +++ b/cpukit/libcsupport/src/assocptrbyname.c @@ -5,7 +5,7 @@ * @ingroup Associativity */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assocptrbyremote.c b/cpukit/libcsupport/src/assocptrbyremote.c index 465158195b..6647672566 100644 --- a/cpukit/libcsupport/src/assocptrbyremote.c +++ b/cpukit/libcsupport/src/assocptrbyremote.c @@ -5,7 +5,7 @@ * @ingroup Associativity */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assocremotebylocal.c b/cpukit/libcsupport/src/assocremotebylocal.c index cd5fa0c647..05e30c1536 100644 --- a/cpukit/libcsupport/src/assocremotebylocal.c +++ b/cpukit/libcsupport/src/assocremotebylocal.c @@ -3,7 +3,7 @@ * rtems assoc routines */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assocremotebylocalbitfield.c b/cpukit/libcsupport/src/assocremotebylocalbitfield.c index b26c98c0d2..efcc87a3c4 100644 --- a/cpukit/libcsupport/src/assocremotebylocalbitfield.c +++ b/cpukit/libcsupport/src/assocremotebylocalbitfield.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assocremotebyname.c b/cpukit/libcsupport/src/assocremotebyname.c index 8a894fc896..4d8ecb303f 100644 --- a/cpukit/libcsupport/src/assocremotebyname.c +++ b/cpukit/libcsupport/src/assocremotebyname.c @@ -5,7 +5,7 @@ * @ingroup Associativity */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/assocthreadstatestostring.c b/cpukit/libcsupport/src/assocthreadstatestostring.c index 055a1f2f17..cd1b72d7ab 100644 --- a/cpukit/libcsupport/src/assocthreadstatestostring.c +++ b/cpukit/libcsupport/src/assocthreadstatestostring.c @@ -6,7 +6,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/base_fs.c b/cpukit/libcsupport/src/base_fs.c index 16fa9b8a88..0eb4c35293 100644 --- a/cpukit/libcsupport/src/base_fs.c +++ b/cpukit/libcsupport/src/base_fs.c @@ -17,7 +17,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/cachecoherentalloc.c b/cpukit/libcsupport/src/cachecoherentalloc.c index bf8167de88..ced6b6951b 100644 --- a/cpukit/libcsupport/src/cachecoherentalloc.c +++ b/cpukit/libcsupport/src/cachecoherentalloc.c @@ -18,8 +18,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems.h> diff --git a/cpukit/libcsupport/src/calloc.c b/cpukit/libcsupport/src/calloc.c index 78b08ab5a5..e015f30d6c 100644 --- a/cpukit/libcsupport/src/calloc.c +++ b/cpukit/libcsupport/src/calloc.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/cfgetispeed.c b/cpukit/libcsupport/src/cfgetispeed.c index f551e271bf..050991d468 100644 --- a/cpukit/libcsupport/src/cfgetispeed.c +++ b/cpukit/libcsupport/src/cfgetispeed.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/cfgetospeed.c b/cpukit/libcsupport/src/cfgetospeed.c index 96446c7823..ac44b6de72 100644 --- a/cpukit/libcsupport/src/cfgetospeed.c +++ b/cpukit/libcsupport/src/cfgetospeed.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/cfmakeraw.c b/cpukit/libcsupport/src/cfmakeraw.c index c335b92950..92f55e2ed5 100644 --- a/cpukit/libcsupport/src/cfmakeraw.c +++ b/cpukit/libcsupport/src/cfmakeraw.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/cfmakesane.c b/cpukit/libcsupport/src/cfmakesane.c index 486e2f98a1..d535c01310 100644 --- a/cpukit/libcsupport/src/cfmakesane.c +++ b/cpukit/libcsupport/src/cfmakesane.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/cfsetispeed.c b/cpukit/libcsupport/src/cfsetispeed.c index 14e67b9b8b..e46036d24e 100644 --- a/cpukit/libcsupport/src/cfsetispeed.c +++ b/cpukit/libcsupport/src/cfsetispeed.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/cfsetospeed.c b/cpukit/libcsupport/src/cfsetospeed.c index 41a232aa0f..a85e2c1cfd 100644 --- a/cpukit/libcsupport/src/cfsetospeed.c +++ b/cpukit/libcsupport/src/cfsetospeed.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/cfsetspeed.c b/cpukit/libcsupport/src/cfsetspeed.c index 0d37840319..f3d73ed755 100644 --- a/cpukit/libcsupport/src/cfsetspeed.c +++ b/cpukit/libcsupport/src/cfsetspeed.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/chdir.c b/cpukit/libcsupport/src/chdir.c index 83a359a982..55425345e8 100644 --- a/cpukit/libcsupport/src/chdir.c +++ b/cpukit/libcsupport/src/chdir.c @@ -17,8 +17,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <unistd.h> diff --git a/cpukit/libcsupport/src/chmod.c b/cpukit/libcsupport/src/chmod.c index 2d1a4aa55e..b53a407d72 100644 --- a/cpukit/libcsupport/src/chmod.c +++ b/cpukit/libcsupport/src/chmod.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <sys/stat.h> diff --git a/cpukit/libcsupport/src/chown.c b/cpukit/libcsupport/src/chown.c index 8adfb82298..45d041f812 100644 --- a/cpukit/libcsupport/src/chown.c +++ b/cpukit/libcsupport/src/chown.c @@ -17,8 +17,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <unistd.h> diff --git a/cpukit/libcsupport/src/chroot.c b/cpukit/libcsupport/src/chroot.c index 8dbf403b3e..3e7dfbae87 100644 --- a/cpukit/libcsupport/src/chroot.c +++ b/cpukit/libcsupport/src/chroot.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <string.h> diff --git a/cpukit/libcsupport/src/clock.c b/cpukit/libcsupport/src/clock.c index f976221a78..25d485a0d9 100644 --- a/cpukit/libcsupport/src/clock.c +++ b/cpukit/libcsupport/src/clock.c @@ -12,7 +12,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/clonenode.c b/cpukit/libcsupport/src/clonenode.c index adf1ecf167..bf3b9bbccf 100644 --- a/cpukit/libcsupport/src/clonenode.c +++ b/cpukit/libcsupport/src/clonenode.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libcsupport/src/close.c b/cpukit/libcsupport/src/close.c index d478e231c6..21b375149d 100644 --- a/cpukit/libcsupport/src/close.c +++ b/cpukit/libcsupport/src/close.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/consolesimple.c b/cpukit/libcsupport/src/consolesimple.c index 4316fa321a..dd2093621f 100644 --- a/cpukit/libcsupport/src/consolesimple.c +++ b/cpukit/libcsupport/src/consolesimple.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/consolesimpletask.c b/cpukit/libcsupport/src/consolesimpletask.c index 5b12cc6647..82ea2a5f13 100644 --- a/cpukit/libcsupport/src/consolesimpletask.c +++ b/cpukit/libcsupport/src/consolesimpletask.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/ctermid.c b/cpukit/libcsupport/src/ctermid.c index 896ebd2680..56dda553a9 100644 --- a/cpukit/libcsupport/src/ctermid.c +++ b/cpukit/libcsupport/src/ctermid.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/dup.c b/cpukit/libcsupport/src/dup.c index a7b27418e5..98ee8fdf1e 100644 --- a/cpukit/libcsupport/src/dup.c +++ b/cpukit/libcsupport/src/dup.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/dup2.c b/cpukit/libcsupport/src/dup2.c index 483e75040d..020d9a350f 100644 --- a/cpukit/libcsupport/src/dup2.c +++ b/cpukit/libcsupport/src/dup2.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/error.c b/cpukit/libcsupport/src/error.c index 7d76327f94..185302a2e8 100644 --- a/cpukit/libcsupport/src/error.c +++ b/cpukit/libcsupport/src/error.c @@ -5,7 +5,7 @@ * @ingroup ErrorPanicSupport */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/fchdir.c b/cpukit/libcsupport/src/fchdir.c index df37458ead..f6ff0bdda0 100644 --- a/cpukit/libcsupport/src/fchdir.c +++ b/cpukit/libcsupport/src/fchdir.c @@ -17,8 +17,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <unistd.h> diff --git a/cpukit/libcsupport/src/fchmod.c b/cpukit/libcsupport/src/fchmod.c index 13e7fdd380..35c058c19d 100644 --- a/cpukit/libcsupport/src/fchmod.c +++ b/cpukit/libcsupport/src/fchmod.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <sys/stat.h> diff --git a/cpukit/libcsupport/src/fchown.c b/cpukit/libcsupport/src/fchown.c index 8c3d9b2c6c..0d5597cca3 100644 --- a/cpukit/libcsupport/src/fchown.c +++ b/cpukit/libcsupport/src/fchown.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <string.h> diff --git a/cpukit/libcsupport/src/fcntl.c b/cpukit/libcsupport/src/fcntl.c index 86b757e511..111fd188d4 100644 --- a/cpukit/libcsupport/src/fcntl.c +++ b/cpukit/libcsupport/src/fcntl.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <stdarg.h> diff --git a/cpukit/libcsupport/src/fdatasync.c b/cpukit/libcsupport/src/fdatasync.c index bf90957f0f..3b9a4ff9bf 100644 --- a/cpukit/libcsupport/src/fdatasync.c +++ b/cpukit/libcsupport/src/fdatasync.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/flockfile.c b/cpukit/libcsupport/src/flockfile.c index e924b4e71d..5282fdb5bf 100644 --- a/cpukit/libcsupport/src/flockfile.c +++ b/cpukit/libcsupport/src/flockfile.c @@ -12,7 +12,7 @@ * is freely granted, provided that this notice is preserved. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/fpathconf.c b/cpukit/libcsupport/src/fpathconf.c index d08ac9c776..d081012ba9 100644 --- a/cpukit/libcsupport/src/fpathconf.c +++ b/cpukit/libcsupport/src/fpathconf.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/free.c b/cpukit/libcsupport/src/free.c index d8dd2bdb0e..e52516d854 100644 --- a/cpukit/libcsupport/src/free.c +++ b/cpukit/libcsupport/src/free.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/freenode.c b/cpukit/libcsupport/src/freenode.c index 3d124c054d..228fd9036a 100644 --- a/cpukit/libcsupport/src/freenode.c +++ b/cpukit/libcsupport/src/freenode.c @@ -16,8 +16,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libcsupport/src/fstat.c b/cpukit/libcsupport/src/fstat.c index 3a1241a862..0cdec6d1eb 100644 --- a/cpukit/libcsupport/src/fstat.c +++ b/cpukit/libcsupport/src/fstat.c @@ -9,7 +9,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/fsync.c b/cpukit/libcsupport/src/fsync.c index 428f82abd0..8a427390c2 100644 --- a/cpukit/libcsupport/src/fsync.c +++ b/cpukit/libcsupport/src/fsync.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/ftruncate.c b/cpukit/libcsupport/src/ftruncate.c index 99a9c6b5ef..6383bfe398 100644 --- a/cpukit/libcsupport/src/ftruncate.c +++ b/cpukit/libcsupport/src/ftruncate.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <unistd.h> diff --git a/cpukit/libcsupport/src/ftrylockfile.c b/cpukit/libcsupport/src/ftrylockfile.c index 6b62396b74..0ff2183021 100644 --- a/cpukit/libcsupport/src/ftrylockfile.c +++ b/cpukit/libcsupport/src/ftrylockfile.c @@ -6,7 +6,7 @@ * is freely granted, provided that this notice is preserved. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/funlockfile.c b/cpukit/libcsupport/src/funlockfile.c index 3c1efff7a6..d58898e03c 100644 --- a/cpukit/libcsupport/src/funlockfile.c +++ b/cpukit/libcsupport/src/funlockfile.c @@ -13,7 +13,7 @@ * is freely granted, provided that this notice is preserved. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getchark.c b/cpukit/libcsupport/src/getchark.c index 0d7378c847..5a9afbda7a 100644 --- a/cpukit/libcsupport/src/getchark.c +++ b/cpukit/libcsupport/src/getchark.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getdents.c b/cpukit/libcsupport/src/getdents.c index 7008def316..d8e7efb2ab 100644 --- a/cpukit/libcsupport/src/getdents.c +++ b/cpukit/libcsupport/src/getdents.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getegid.c b/cpukit/libcsupport/src/getegid.c index f224617d8b..3f55538462 100644 --- a/cpukit/libcsupport/src/getegid.c +++ b/cpukit/libcsupport/src/getegid.c @@ -5,7 +5,7 @@ * @ingroup libcsupport */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/geteuid.c b/cpukit/libcsupport/src/geteuid.c index d71df9a18b..749bc08a52 100644 --- a/cpukit/libcsupport/src/geteuid.c +++ b/cpukit/libcsupport/src/geteuid.c @@ -5,7 +5,7 @@ * @ingroup libcsupport */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getgid.c b/cpukit/libcsupport/src/getgid.c index cb8e7e97fc..27af49a9b6 100644 --- a/cpukit/libcsupport/src/getgid.c +++ b/cpukit/libcsupport/src/getgid.c @@ -5,7 +5,7 @@ * @ingroup libcsupport */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getgrent.c b/cpukit/libcsupport/src/getgrent.c index 4f27efc98c..b358cb947c 100644 --- a/cpukit/libcsupport/src/getgrent.c +++ b/cpukit/libcsupport/src/getgrent.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getgrnam.c b/cpukit/libcsupport/src/getgrnam.c index 505a334f75..71c613499a 100644 --- a/cpukit/libcsupport/src/getgrnam.c +++ b/cpukit/libcsupport/src/getgrnam.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getgroups.c b/cpukit/libcsupport/src/getgroups.c index 73a42cee1f..bd479a3db4 100644 --- a/cpukit/libcsupport/src/getgroups.c +++ b/cpukit/libcsupport/src/getgroups.c @@ -5,7 +5,7 @@ * @ingroup libcsupport */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getlogin.c b/cpukit/libcsupport/src/getlogin.c index 6fce31fa8b..c353126f4b 100644 --- a/cpukit/libcsupport/src/getlogin.c +++ b/cpukit/libcsupport/src/getlogin.c @@ -5,7 +5,7 @@ * @ingroup libcsupport */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getpagesize.c b/cpukit/libcsupport/src/getpagesize.c index 24776ec920..6ba3190e99 100644 --- a/cpukit/libcsupport/src/getpagesize.c +++ b/cpukit/libcsupport/src/getpagesize.c @@ -5,7 +5,7 @@ * @ingroup libcsupport */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getpgrp.c b/cpukit/libcsupport/src/getpgrp.c index de372f3e8c..ad3d0da49a 100644 --- a/cpukit/libcsupport/src/getpgrp.c +++ b/cpukit/libcsupport/src/getpgrp.c @@ -1,4 +1,4 @@ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getpid.c b/cpukit/libcsupport/src/getpid.c index e17b1f2585..4584ff1506 100644 --- a/cpukit/libcsupport/src/getpid.c +++ b/cpukit/libcsupport/src/getpid.c @@ -5,7 +5,7 @@ * @ingroup libcsupport */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getppid.c b/cpukit/libcsupport/src/getppid.c index ad2e88376e..a1e7cdfcef 100644 --- a/cpukit/libcsupport/src/getppid.c +++ b/cpukit/libcsupport/src/getppid.c @@ -5,7 +5,7 @@ * @ingroup libcsupport */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getpwent.c b/cpukit/libcsupport/src/getpwent.c index 5a6b4440f4..400a53e5f3 100644 --- a/cpukit/libcsupport/src/getpwent.c +++ b/cpukit/libcsupport/src/getpwent.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getreentglobal.c b/cpukit/libcsupport/src/getreentglobal.c index ba1e4bfe06..742c1bf512 100644 --- a/cpukit/libcsupport/src/getreentglobal.c +++ b/cpukit/libcsupport/src/getreentglobal.c @@ -12,7 +12,7 @@ * http://www.rtems.com/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getrusage.c b/cpukit/libcsupport/src/getrusage.c index 56ddb7488e..99c1ba8072 100644 --- a/cpukit/libcsupport/src/getrusage.c +++ b/cpukit/libcsupport/src/getrusage.c @@ -7,7 +7,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/getuid.c b/cpukit/libcsupport/src/getuid.c index 5b9c6b8ca9..0faf238094 100644 --- a/cpukit/libcsupport/src/getuid.c +++ b/cpukit/libcsupport/src/getuid.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/gxx_wrappers.c b/cpukit/libcsupport/src/gxx_wrappers.c index 3a1b0f1991..b81d82d454 100644 --- a/cpukit/libcsupport/src/gxx_wrappers.c +++ b/cpukit/libcsupport/src/gxx_wrappers.c @@ -24,7 +24,7 @@ */ #if defined(__GNUC__) -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/ioctl.c b/cpukit/libcsupport/src/ioctl.c index b2be524075..e58889ae28 100644 --- a/cpukit/libcsupport/src/ioctl.c +++ b/cpukit/libcsupport/src/ioctl.c @@ -17,7 +17,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/isatty_r.c b/cpukit/libcsupport/src/isatty_r.c index a23417245c..d4c30af92e 100644 --- a/cpukit/libcsupport/src/isatty_r.c +++ b/cpukit/libcsupport/src/isatty_r.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/issetugid.c b/cpukit/libcsupport/src/issetugid.c index 8d2b98cad1..e599a5863e 100644 --- a/cpukit/libcsupport/src/issetugid.c +++ b/cpukit/libcsupport/src/issetugid.c @@ -6,7 +6,7 @@ */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/kill_noposix.c b/cpukit/libcsupport/src/kill_noposix.c index a1f138ab91..a111f071d7 100644 --- a/cpukit/libcsupport/src/kill_noposix.c +++ b/cpukit/libcsupport/src/kill_noposix.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/lchown.c b/cpukit/libcsupport/src/lchown.c index 3a43c97fd2..eb6af0a3c1 100644 --- a/cpukit/libcsupport/src/lchown.c +++ b/cpukit/libcsupport/src/lchown.c @@ -9,8 +9,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <unistd.h> diff --git a/cpukit/libcsupport/src/libio.c b/cpukit/libcsupport/src/libio.c index c9490c7aa5..72015d5a93 100644 --- a/cpukit/libcsupport/src/libio.c +++ b/cpukit/libcsupport/src/libio.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/libio_exit.c b/cpukit/libcsupport/src/libio_exit.c index daacb3a07d..a66bc65c4a 100644 --- a/cpukit/libcsupport/src/libio_exit.c +++ b/cpukit/libcsupport/src/libio_exit.c @@ -18,8 +18,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <unistd.h> diff --git a/cpukit/libcsupport/src/libio_init.c b/cpukit/libcsupport/src/libio_init.c index eccd5b2cd7..d5814ca5a2 100644 --- a/cpukit/libcsupport/src/libio_init.c +++ b/cpukit/libcsupport/src/libio_init.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/link.c b/cpukit/libcsupport/src/link.c index faea544e29..5b2c2743ea 100644 --- a/cpukit/libcsupport/src/link.c +++ b/cpukit/libcsupport/src/link.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <unistd.h> diff --git a/cpukit/libcsupport/src/lseek.c b/cpukit/libcsupport/src/lseek.c index 00307e3e0d..ca1b59fbbd 100644 --- a/cpukit/libcsupport/src/lseek.c +++ b/cpukit/libcsupport/src/lseek.c @@ -9,8 +9,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <unistd.h> diff --git a/cpukit/libcsupport/src/lstat.c b/cpukit/libcsupport/src/lstat.c index 732cecb21f..69e97714a6 100644 --- a/cpukit/libcsupport/src/lstat.c +++ b/cpukit/libcsupport/src/lstat.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/malloc.c b/cpukit/libcsupport/src/malloc.c index 03e2208ef4..e61128bf8c 100644 --- a/cpukit/libcsupport/src/malloc.c +++ b/cpukit/libcsupport/src/malloc.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/malloc_deferred.c b/cpukit/libcsupport/src/malloc_deferred.c index ccb8dc3b8b..62c231d2f8 100644 --- a/cpukit/libcsupport/src/malloc_deferred.c +++ b/cpukit/libcsupport/src/malloc_deferred.c @@ -17,7 +17,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/malloc_dirtier.c b/cpukit/libcsupport/src/malloc_dirtier.c index c7efc04234..bff38e584c 100644 --- a/cpukit/libcsupport/src/malloc_dirtier.c +++ b/cpukit/libcsupport/src/malloc_dirtier.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/malloc_initialize.c b/cpukit/libcsupport/src/malloc_initialize.c index 520960d547..0203e22411 100644 --- a/cpukit/libcsupport/src/malloc_initialize.c +++ b/cpukit/libcsupport/src/malloc_initialize.c @@ -13,8 +13,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/malloc.h> diff --git a/cpukit/libcsupport/src/malloc_walk.c b/cpukit/libcsupport/src/malloc_walk.c index 4c7f0a71bd..9cd84346e3 100644 --- a/cpukit/libcsupport/src/malloc_walk.c +++ b/cpukit/libcsupport/src/malloc_walk.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/mallocdirtydefault.c b/cpukit/libcsupport/src/mallocdirtydefault.c index aea2a93edd..829334d6ca 100644 --- a/cpukit/libcsupport/src/mallocdirtydefault.c +++ b/cpukit/libcsupport/src/mallocdirtydefault.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/mallocextenddefault.c b/cpukit/libcsupport/src/mallocextenddefault.c index a6741d834d..4b179db184 100644 --- a/cpukit/libcsupport/src/mallocextenddefault.c +++ b/cpukit/libcsupport/src/mallocextenddefault.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/mallocfreespace.c b/cpukit/libcsupport/src/mallocfreespace.c index 0d42b9ea5a..7ba8f7d4d4 100644 --- a/cpukit/libcsupport/src/mallocfreespace.c +++ b/cpukit/libcsupport/src/mallocfreespace.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/mallocgetheapptr.c b/cpukit/libcsupport/src/mallocgetheapptr.c index 832e523c20..4b2f43c34f 100644 --- a/cpukit/libcsupport/src/mallocgetheapptr.c +++ b/cpukit/libcsupport/src/mallocgetheapptr.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/mallocinfo.c b/cpukit/libcsupport/src/mallocinfo.c index b059795f19..505dbb3374 100644 --- a/cpukit/libcsupport/src/mallocinfo.c +++ b/cpukit/libcsupport/src/mallocinfo.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/mallocsetheapptr.c b/cpukit/libcsupport/src/mallocsetheapptr.c index 7735823683..74ab2593ea 100644 --- a/cpukit/libcsupport/src/mallocsetheapptr.c +++ b/cpukit/libcsupport/src/mallocsetheapptr.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/mkdir.c b/cpukit/libcsupport/src/mkdir.c index 957d48d7ce..c8ac131d90 100644 --- a/cpukit/libcsupport/src/mkdir.c +++ b/cpukit/libcsupport/src/mkdir.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/mkfifo.c b/cpukit/libcsupport/src/mkfifo.c index 1ea9f38be8..11ad6e9fea 100644 --- a/cpukit/libcsupport/src/mkfifo.c +++ b/cpukit/libcsupport/src/mkfifo.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/mknod.c b/cpukit/libcsupport/src/mknod.c index 2b7929114a..24442e3396 100644 --- a/cpukit/libcsupport/src/mknod.c +++ b/cpukit/libcsupport/src/mknod.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <sys/stat.h> diff --git a/cpukit/libcsupport/src/mount-mgr.c b/cpukit/libcsupport/src/mount-mgr.c index 02468208ad..065c2d5d69 100644 --- a/cpukit/libcsupport/src/mount-mgr.c +++ b/cpukit/libcsupport/src/mount-mgr.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/mount-mktgt.c b/cpukit/libcsupport/src/mount-mktgt.c index 062746ccfd..3c518184ed 100644 --- a/cpukit/libcsupport/src/mount-mktgt.c +++ b/cpukit/libcsupport/src/mount-mktgt.c @@ -19,7 +19,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/mount.c b/cpukit/libcsupport/src/mount.c index 5328d24e7f..a4f6423c03 100644 --- a/cpukit/libcsupport/src/mount.c +++ b/cpukit/libcsupport/src/mount.c @@ -16,8 +16,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <stdlib.h> diff --git a/cpukit/libcsupport/src/newlibc_exit.c b/cpukit/libcsupport/src/newlibc_exit.c index b59f00446e..650b692c74 100644 --- a/cpukit/libcsupport/src/newlibc_exit.c +++ b/cpukit/libcsupport/src/newlibc_exit.c @@ -7,7 +7,7 @@ * */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/newlibc_reent.c b/cpukit/libcsupport/src/newlibc_reent.c index 26da252930..1a400eeb18 100644 --- a/cpukit/libcsupport/src/newlibc_reent.c +++ b/cpukit/libcsupport/src/newlibc_reent.c @@ -14,7 +14,7 @@ * */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/open.c b/cpukit/libcsupport/src/open.c index b21dcb1876..bdb50240b4 100644 --- a/cpukit/libcsupport/src/open.c +++ b/cpukit/libcsupport/src/open.c @@ -17,8 +17,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <sys/stat.h> diff --git a/cpukit/libcsupport/src/open_dev_console.c b/cpukit/libcsupport/src/open_dev_console.c index d5bc8ef669..405191d2c3 100644 --- a/cpukit/libcsupport/src/open_dev_console.c +++ b/cpukit/libcsupport/src/open_dev_console.c @@ -9,7 +9,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/pathconf.c b/cpukit/libcsupport/src/pathconf.c index 7dfc7cf2fd..2f232f8d01 100644 --- a/cpukit/libcsupport/src/pathconf.c +++ b/cpukit/libcsupport/src/pathconf.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/posix_devctl.c b/cpukit/libcsupport/src/posix_devctl.c index 0646ee4356..3ff9dd929f 100644 --- a/cpukit/libcsupport/src/posix_devctl.c +++ b/cpukit/libcsupport/src/posix_devctl.c @@ -24,7 +24,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/posix_memalign.c b/cpukit/libcsupport/src/posix_memalign.c index 80865cdc10..b2bef3e525 100644 --- a/cpukit/libcsupport/src/posix_memalign.c +++ b/cpukit/libcsupport/src/posix_memalign.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/print_fprintf.c b/cpukit/libcsupport/src/print_fprintf.c index 43ff4780d7..251bfc3a14 100644 --- a/cpukit/libcsupport/src/print_fprintf.c +++ b/cpukit/libcsupport/src/print_fprintf.c @@ -15,7 +15,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include <rtems/printer.h> diff --git a/cpukit/libcsupport/src/print_printf.c b/cpukit/libcsupport/src/print_printf.c index c9b273a3af..c817258b54 100644 --- a/cpukit/libcsupport/src/print_printf.c +++ b/cpukit/libcsupport/src/print_printf.c @@ -15,7 +15,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include <rtems/printer.h> diff --git a/cpukit/libcsupport/src/printf_plugin.c b/cpukit/libcsupport/src/printf_plugin.c index d8da6a0683..0b3c5b2517 100644 --- a/cpukit/libcsupport/src/printf_plugin.c +++ b/cpukit/libcsupport/src/printf_plugin.c @@ -20,7 +20,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include <rtems/printer.h> diff --git a/cpukit/libcsupport/src/printk.c b/cpukit/libcsupport/src/printk.c index 88cd22aab0..444efab1f2 100644 --- a/cpukit/libcsupport/src/printk.c +++ b/cpukit/libcsupport/src/printk.c @@ -21,7 +21,7 @@ * This code is based on code by: Jose Rufino - IST */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/printk_plugin.c b/cpukit/libcsupport/src/printk_plugin.c index b45a781636..839a76e9c9 100644 --- a/cpukit/libcsupport/src/printk_plugin.c +++ b/cpukit/libcsupport/src/printk_plugin.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/privateenv.c b/cpukit/libcsupport/src/privateenv.c index cd0154ba38..05c2bfc1f8 100644 --- a/cpukit/libcsupport/src/privateenv.c +++ b/cpukit/libcsupport/src/privateenv.c @@ -16,8 +16,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <stdlib.h> diff --git a/cpukit/libcsupport/src/putk.c b/cpukit/libcsupport/src/putk.c index 5a84a4be0b..87da29667d 100644 --- a/cpukit/libcsupport/src/putk.c +++ b/cpukit/libcsupport/src/putk.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/pwdgrp.c b/cpukit/libcsupport/src/pwdgrp.c index 5027b01a63..a97d397982 100644 --- a/cpukit/libcsupport/src/pwdgrp.c +++ b/cpukit/libcsupport/src/pwdgrp.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/read.c b/cpukit/libcsupport/src/read.c index 03c39120bb..2f317f48ca 100644 --- a/cpukit/libcsupport/src/read.c +++ b/cpukit/libcsupport/src/read.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/readlink.c b/cpukit/libcsupport/src/readlink.c index 71a9d0d726..0f2c46ee95 100644 --- a/cpukit/libcsupport/src/readlink.c +++ b/cpukit/libcsupport/src/readlink.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <unistd.h> diff --git a/cpukit/libcsupport/src/readv.c b/cpukit/libcsupport/src/readv.c index 6d4f1b3cf1..65c02f75d5 100644 --- a/cpukit/libcsupport/src/readv.c +++ b/cpukit/libcsupport/src/readv.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/realloc.c b/cpukit/libcsupport/src/realloc.c index 7912780c09..1d9ae45c5d 100644 --- a/cpukit/libcsupport/src/realloc.c +++ b/cpukit/libcsupport/src/realloc.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/resource_snapshot.c b/cpukit/libcsupport/src/resource_snapshot.c index 86f7d28188..b7f7c2d0c3 100644 --- a/cpukit/libcsupport/src/resource_snapshot.c +++ b/cpukit/libcsupport/src/resource_snapshot.c @@ -12,8 +12,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libcsupport.h> diff --git a/cpukit/libcsupport/src/rmdir.c b/cpukit/libcsupport/src/rmdir.c index 8aec6f784e..6e002c3923 100644 --- a/cpukit/libcsupport/src/rmdir.c +++ b/cpukit/libcsupport/src/rmdir.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <unistd.h> diff --git a/cpukit/libcsupport/src/rtems_heap_extend.c b/cpukit/libcsupport/src/rtems_heap_extend.c index d93edb1f87..9bad9429e7 100644 --- a/cpukit/libcsupport/src/rtems_heap_extend.c +++ b/cpukit/libcsupport/src/rtems_heap_extend.c @@ -20,8 +20,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #ifdef RTEMS_NEWLIB diff --git a/cpukit/libcsupport/src/rtems_heap_extend_via_sbrk.c b/cpukit/libcsupport/src/rtems_heap_extend_via_sbrk.c index 61bc1cfd3f..6bb896a81e 100644 --- a/cpukit/libcsupport/src/rtems_heap_extend_via_sbrk.c +++ b/cpukit/libcsupport/src/rtems_heap_extend_via_sbrk.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <unistd.h> diff --git a/cpukit/libcsupport/src/rtems_heap_greedy.c b/cpukit/libcsupport/src/rtems_heap_greedy.c index 9a55e3929b..4dda39873f 100644 --- a/cpukit/libcsupport/src/rtems_heap_greedy.c +++ b/cpukit/libcsupport/src/rtems_heap_greedy.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include "malloc_p.h" diff --git a/cpukit/libcsupport/src/rtems_heap_null_extend.c b/cpukit/libcsupport/src/rtems_heap_null_extend.c index 329956cbf5..3fb4792675 100644 --- a/cpukit/libcsupport/src/rtems_heap_null_extend.c +++ b/cpukit/libcsupport/src/rtems_heap_null_extend.c @@ -12,8 +12,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/malloc.h> diff --git a/cpukit/libcsupport/src/rtems_memalign.c b/cpukit/libcsupport/src/rtems_memalign.c index 8e3363ebf3..aa938ac66f 100644 --- a/cpukit/libcsupport/src/rtems_memalign.c +++ b/cpukit/libcsupport/src/rtems_memalign.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/rtems_mkdir.c b/cpukit/libcsupport/src/rtems_mkdir.c index 86ef7e1b84..da61253b1f 100644 --- a/cpukit/libcsupport/src/rtems_mkdir.c +++ b/cpukit/libcsupport/src/rtems_mkdir.c @@ -39,7 +39,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/rtems_put_char.c b/cpukit/libcsupport/src/rtems_put_char.c index 1c141f106b..53b368fd18 100644 --- a/cpukit/libcsupport/src/rtems_put_char.c +++ b/cpukit/libcsupport/src/rtems_put_char.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/rtems_putc.c b/cpukit/libcsupport/src/rtems_putc.c index 784f768f1b..6596a06d94 100644 --- a/cpukit/libcsupport/src/rtems_putc.c +++ b/cpukit/libcsupport/src/rtems_putc.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/bspIo.h> diff --git a/cpukit/libcsupport/src/setegid.c b/cpukit/libcsupport/src/setegid.c index 8975c137ec..2a3ef2f868 100644 --- a/cpukit/libcsupport/src/setegid.c +++ b/cpukit/libcsupport/src/setegid.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/seteuid.c b/cpukit/libcsupport/src/seteuid.c index 17abda123d..5d05968d62 100644 --- a/cpukit/libcsupport/src/seteuid.c +++ b/cpukit/libcsupport/src/seteuid.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/setgid.c b/cpukit/libcsupport/src/setgid.c index 3f59a2a13d..2ee0835998 100644 --- a/cpukit/libcsupport/src/setgid.c +++ b/cpukit/libcsupport/src/setgid.c @@ -1,4 +1,4 @@ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/setpgid.c b/cpukit/libcsupport/src/setpgid.c index dd810d7559..dba8633bde 100644 --- a/cpukit/libcsupport/src/setpgid.c +++ b/cpukit/libcsupport/src/setpgid.c @@ -5,7 +5,7 @@ * @ingroup libcsupport */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/setsid.c b/cpukit/libcsupport/src/setsid.c index f86b9e2b6a..451b11ade4 100644 --- a/cpukit/libcsupport/src/setsid.c +++ b/cpukit/libcsupport/src/setsid.c @@ -5,7 +5,7 @@ * @ingroup libcsupport */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/setuid.c b/cpukit/libcsupport/src/setuid.c index 3cfcc976f9..0c18ee5ad8 100644 --- a/cpukit/libcsupport/src/setuid.c +++ b/cpukit/libcsupport/src/setuid.c @@ -7,7 +7,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/stat.c b/cpukit/libcsupport/src/stat.c index f5b72fa282..1de1c835aa 100644 --- a/cpukit/libcsupport/src/stat.c +++ b/cpukit/libcsupport/src/stat.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif /* diff --git a/cpukit/libcsupport/src/statvfs.c b/cpukit/libcsupport/src/statvfs.c index 6c3a16a292..04f223594d 100644 --- a/cpukit/libcsupport/src/statvfs.c +++ b/cpukit/libcsupport/src/statvfs.c @@ -10,8 +10,8 @@ * http://www.opengroup.org/onlinepubs/009695399/basedefs/sys/statvfs.h.html */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <sys/statvfs.h> diff --git a/cpukit/libcsupport/src/sup_fs_check_permissions.c b/cpukit/libcsupport/src/sup_fs_check_permissions.c index 394f945b0b..0049786580 100644 --- a/cpukit/libcsupport/src/sup_fs_check_permissions.c +++ b/cpukit/libcsupport/src/sup_fs_check_permissions.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <sys/stat.h> diff --git a/cpukit/libcsupport/src/sup_fs_deviceio.c b/cpukit/libcsupport/src/sup_fs_deviceio.c index 4a7e0dd13c..f7430fbf6a 100644 --- a/cpukit/libcsupport/src/sup_fs_deviceio.c +++ b/cpukit/libcsupport/src/sup_fs_deviceio.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/deviceio.h> diff --git a/cpukit/libcsupport/src/sup_fs_eval_path.c b/cpukit/libcsupport/src/sup_fs_eval_path.c index a05472f834..bf69c8f9bc 100644 --- a/cpukit/libcsupport/src/sup_fs_eval_path.c +++ b/cpukit/libcsupport/src/sup_fs_eval_path.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libcsupport/src/sup_fs_eval_path_generic.c b/cpukit/libcsupport/src/sup_fs_eval_path_generic.c index de2d278c55..d5d3f93064 100644 --- a/cpukit/libcsupport/src/sup_fs_eval_path_generic.c +++ b/cpukit/libcsupport/src/sup_fs_eval_path_generic.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libcsupport/src/sup_fs_exist_in_same_instance.c b/cpukit/libcsupport/src/sup_fs_exist_in_same_instance.c index 3efc30a52c..6c12456bed 100644 --- a/cpukit/libcsupport/src/sup_fs_exist_in_same_instance.c +++ b/cpukit/libcsupport/src/sup_fs_exist_in_same_instance.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libcsupport/src/sup_fs_location.c b/cpukit/libcsupport/src/sup_fs_location.c index db40d4f21a..e9a7bd0b02 100644 --- a/cpukit/libcsupport/src/sup_fs_location.c +++ b/cpukit/libcsupport/src/sup_fs_location.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <stdlib.h> diff --git a/cpukit/libcsupport/src/sup_fs_mount_iterate.c b/cpukit/libcsupport/src/sup_fs_mount_iterate.c index 01816432c8..4d986090df 100644 --- a/cpukit/libcsupport/src/sup_fs_mount_iterate.c +++ b/cpukit/libcsupport/src/sup_fs_mount_iterate.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libcsupport/src/sup_fs_next_token.c b/cpukit/libcsupport/src/sup_fs_next_token.c index 706b7a7b87..56244ecdf9 100644 --- a/cpukit/libcsupport/src/sup_fs_next_token.c +++ b/cpukit/libcsupport/src/sup_fs_next_token.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libcsupport/src/symlink.c b/cpukit/libcsupport/src/symlink.c index 2929c1aba5..dfe1cf6f48 100644 --- a/cpukit/libcsupport/src/symlink.c +++ b/cpukit/libcsupport/src/symlink.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <unistd.h> diff --git a/cpukit/libcsupport/src/sync.c b/cpukit/libcsupport/src/sync.c index 3586ada9b1..265c6f07c9 100644 --- a/cpukit/libcsupport/src/sync.c +++ b/cpukit/libcsupport/src/sync.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/tcdrain.c b/cpukit/libcsupport/src/tcdrain.c index 7f049aa4cb..eef10dd921 100644 --- a/cpukit/libcsupport/src/tcdrain.c +++ b/cpukit/libcsupport/src/tcdrain.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/tcflow.c b/cpukit/libcsupport/src/tcflow.c index 710289c7df..a35f2ae1a9 100644 --- a/cpukit/libcsupport/src/tcflow.c +++ b/cpukit/libcsupport/src/tcflow.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/tcflush.c b/cpukit/libcsupport/src/tcflush.c index cd781cf5a0..40d3c1e67d 100644 --- a/cpukit/libcsupport/src/tcflush.c +++ b/cpukit/libcsupport/src/tcflush.c @@ -9,8 +9,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <sys/fcntl.h> diff --git a/cpukit/libcsupport/src/tcgetattr.c b/cpukit/libcsupport/src/tcgetattr.c index c8c0e84b7f..41b4152488 100644 --- a/cpukit/libcsupport/src/tcgetattr.c +++ b/cpukit/libcsupport/src/tcgetattr.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/tcgetpgrp.c b/cpukit/libcsupport/src/tcgetpgrp.c index 61585b1826..df2b3f59f9 100644 --- a/cpukit/libcsupport/src/tcgetpgrp.c +++ b/cpukit/libcsupport/src/tcgetpgrp.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/tcsendbreak.c b/cpukit/libcsupport/src/tcsendbreak.c index 0f2e15c5fa..af6df3bff1 100644 --- a/cpukit/libcsupport/src/tcsendbreak.c +++ b/cpukit/libcsupport/src/tcsendbreak.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/tcsetattr.c b/cpukit/libcsupport/src/tcsetattr.c index 6b6afda718..f01a7c448e 100644 --- a/cpukit/libcsupport/src/tcsetattr.c +++ b/cpukit/libcsupport/src/tcsetattr.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/tcsetpgrp.c b/cpukit/libcsupport/src/tcsetpgrp.c index f0bbb1d0d0..b7bc01b48d 100644 --- a/cpukit/libcsupport/src/tcsetpgrp.c +++ b/cpukit/libcsupport/src/tcsetpgrp.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/termios.c b/cpukit/libcsupport/src/termios.c index 81518f36de..3690ee3fc3 100644 --- a/cpukit/libcsupport/src/termios.c +++ b/cpukit/libcsupport/src/termios.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/termios_baud2num.c b/cpukit/libcsupport/src/termios_baud2num.c index 4c80949f17..d91aeed1d1 100644 --- a/cpukit/libcsupport/src/termios_baud2num.c +++ b/cpukit/libcsupport/src/termios_baud2num.c @@ -15,7 +15,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include <rtems/termiostypes.h> diff --git a/cpukit/libcsupport/src/termios_baudtable.c b/cpukit/libcsupport/src/termios_baudtable.c index c2a1859154..170883fdfc 100644 --- a/cpukit/libcsupport/src/termios_baudtable.c +++ b/cpukit/libcsupport/src/termios_baudtable.c @@ -15,7 +15,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include <rtems/termiostypes.h> diff --git a/cpukit/libcsupport/src/termios_num2baud.c b/cpukit/libcsupport/src/termios_num2baud.c index 4e9b852710..e4cb8ea2d9 100644 --- a/cpukit/libcsupport/src/termios_num2baud.c +++ b/cpukit/libcsupport/src/termios_num2baud.c @@ -15,7 +15,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include <rtems/termiostypes.h> diff --git a/cpukit/libcsupport/src/termios_posix_isig_handler.c b/cpukit/libcsupport/src/termios_posix_isig_handler.c index 105e7f463d..5be2d10aa2 100644 --- a/cpukit/libcsupport/src/termios_posix_isig_handler.c +++ b/cpukit/libcsupport/src/termios_posix_isig_handler.c @@ -10,7 +10,7 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/termios_setbestbaud.c b/cpukit/libcsupport/src/termios_setbestbaud.c index d6dcd7f33d..962e1273e7 100644 --- a/cpukit/libcsupport/src/termios_setbestbaud.c +++ b/cpukit/libcsupport/src/termios_setbestbaud.c @@ -12,8 +12,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/termiostypes.h> diff --git a/cpukit/libcsupport/src/termios_setinitialbaud.c b/cpukit/libcsupport/src/termios_setinitialbaud.c index 3b8853f6a8..1e615185ff 100644 --- a/cpukit/libcsupport/src/termios_setinitialbaud.c +++ b/cpukit/libcsupport/src/termios_setinitialbaud.c @@ -15,7 +15,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include <rtems/termiostypes.h> diff --git a/cpukit/libcsupport/src/termiosinitialize.c b/cpukit/libcsupport/src/termiosinitialize.c index 992ed3860a..2aeba89ecc 100644 --- a/cpukit/libcsupport/src/termiosinitialize.c +++ b/cpukit/libcsupport/src/termiosinitialize.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/truncate.c b/cpukit/libcsupport/src/truncate.c index 8674684228..adefcb2d18 100644 --- a/cpukit/libcsupport/src/truncate.c +++ b/cpukit/libcsupport/src/truncate.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/umask.c b/cpukit/libcsupport/src/umask.c index fba2405e4a..616dfb908f 100644 --- a/cpukit/libcsupport/src/umask.c +++ b/cpukit/libcsupport/src/umask.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <sys/stat.h> diff --git a/cpukit/libcsupport/src/unlink.c b/cpukit/libcsupport/src/unlink.c index 84b7994a87..1d09accf3a 100644 --- a/cpukit/libcsupport/src/unlink.c +++ b/cpukit/libcsupport/src/unlink.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <unistd.h> diff --git a/cpukit/libcsupport/src/unmount.c b/cpukit/libcsupport/src/unmount.c index 1929114042..dacd0db067 100644 --- a/cpukit/libcsupport/src/unmount.c +++ b/cpukit/libcsupport/src/unmount.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <errno.h> diff --git a/cpukit/libcsupport/src/utime.c b/cpukit/libcsupport/src/utime.c index 8535e39902..e2d8883592 100644 --- a/cpukit/libcsupport/src/utime.c +++ b/cpukit/libcsupport/src/utime.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif /* FIXME: This include is a workaround for a broken <utime.h> in Newlib */ diff --git a/cpukit/libcsupport/src/utimes.c b/cpukit/libcsupport/src/utimes.c index 528222fa65..3dc47c0000 100644 --- a/cpukit/libcsupport/src/utimes.c +++ b/cpukit/libcsupport/src/utimes.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/utsname.c b/cpukit/libcsupport/src/utsname.c index 57ed914aad..22442c192a 100644 --- a/cpukit/libcsupport/src/utsname.c +++ b/cpukit/libcsupport/src/utsname.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/vprintk.c b/cpukit/libcsupport/src/vprintk.c index b5842fbea3..308872f71e 100644 --- a/cpukit/libcsupport/src/vprintk.c +++ b/cpukit/libcsupport/src/vprintk.c @@ -19,7 +19,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/write.c b/cpukit/libcsupport/src/write.c index a90b291ed8..c9e0d37a44 100644 --- a/cpukit/libcsupport/src/write.c +++ b/cpukit/libcsupport/src/write.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/write_r.c b/cpukit/libcsupport/src/write_r.c index 12dabc9591..0ecfda106e 100644 --- a/cpukit/libcsupport/src/write_r.c +++ b/cpukit/libcsupport/src/write_r.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libcsupport/src/writev.c b/cpukit/libcsupport/src/writev.c index ad3d8dcd75..499017aea1 100644 --- a/cpukit/libcsupport/src/writev.c +++ b/cpukit/libcsupport/src/writev.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/dlfcn-shell.c b/cpukit/libdl/dlfcn-shell.c index 539774d6dd..67a6e6b8b7 100644 --- a/cpukit/libdl/dlfcn-shell.c +++ b/cpukit/libdl/dlfcn-shell.c @@ -15,7 +15,7 @@ * Shell command wrappers for the Dynamic Loading API. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rap-shell.c b/cpukit/libdl/rap-shell.c index dc1182c826..78a3b539b9 100644 --- a/cpukit/libdl/rap-shell.c +++ b/cpukit/libdl/rap-shell.c @@ -15,7 +15,7 @@ * Shell command wrappers for the RTEMS Application loader. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rap.c b/cpukit/libdl/rap.c index ff945314ce..e6585c706b 100644 --- a/cpukit/libdl/rap.c +++ b/cpukit/libdl/rap.c @@ -15,7 +15,7 @@ * This is the RAP implementation. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-archive.c b/cpukit/libdl/rtl-archive.c index 34e45357ba..eb7641b034 100644 --- a/cpukit/libdl/rtl-archive.c +++ b/cpukit/libdl/rtl-archive.c @@ -13,7 +13,7 @@ * @brief RTEMS Run-Time Linker Archive */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-bit-alloc.c b/cpukit/libdl/rtl-bit-alloc.c index b7871f227b..b494797e7d 100644 --- a/cpukit/libdl/rtl-bit-alloc.c +++ b/cpukit/libdl/rtl-bit-alloc.c @@ -17,7 +17,7 @@ * should be small and the minimum allocator a 32bit work or higher. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-chain-iterator.c b/cpukit/libdl/rtl-chain-iterator.c index fb10443c9f..4e98c203d1 100644 --- a/cpukit/libdl/rtl-chain-iterator.c +++ b/cpukit/libdl/rtl-chain-iterator.c @@ -15,7 +15,7 @@ * A means of executing an iterator on a chain. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-debugger.c b/cpukit/libdl/rtl-debugger.c index e6c5e161fd..1ab619d194 100644 --- a/cpukit/libdl/rtl-debugger.c +++ b/cpukit/libdl/rtl-debugger.c @@ -22,7 +22,7 @@ * operation based on the r_state field. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-elf.c b/cpukit/libdl/rtl-elf.c index 76001d9bfc..9370f36989 100644 --- a/cpukit/libdl/rtl-elf.c +++ b/cpukit/libdl/rtl-elf.c @@ -15,7 +15,7 @@ * This is the RTL implementation. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-error.c b/cpukit/libdl/rtl-error.c index acd89ac07d..f7c046861c 100644 --- a/cpukit/libdl/rtl-error.c +++ b/cpukit/libdl/rtl-error.c @@ -13,7 +13,7 @@ * @brief RTEMS Run-Time Linker Error */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-find-file.c b/cpukit/libdl/rtl-find-file.c index 2bc89edbbd..b354a1dce2 100644 --- a/cpukit/libdl/rtl-find-file.c +++ b/cpukit/libdl/rtl-find-file.c @@ -13,7 +13,7 @@ * @brief RTEMS Run-Time Linker Error */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-obj-cache.c b/cpukit/libdl/rtl-obj-cache.c index 06ef8db384..28d3b02a16 100644 --- a/cpukit/libdl/rtl-obj-cache.c +++ b/cpukit/libdl/rtl-obj-cache.c @@ -14,7 +14,7 @@ * object file in a buffer to localise read performance. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-obj-comp.c b/cpukit/libdl/rtl-obj-comp.c index bf9a2fc45f..36825baebe 100644 --- a/cpukit/libdl/rtl-obj-comp.c +++ b/cpukit/libdl/rtl-obj-comp.c @@ -14,7 +14,7 @@ * stream of data. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-obj.c b/cpukit/libdl/rtl-obj.c index 1683ec1c6d..0c4a624c18 100644 --- a/cpukit/libdl/rtl-obj.c +++ b/cpukit/libdl/rtl-obj.c @@ -13,7 +13,7 @@ * @brief RTEMS Run-Time Linker Error */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-rap.c b/cpukit/libdl/rtl-rap.c index 6a07a7519a..4e4540c156 100644 --- a/cpukit/libdl/rtl-rap.c +++ b/cpukit/libdl/rtl-rap.c @@ -15,7 +15,7 @@ * This is the RAP format loader support.. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-shell.c b/cpukit/libdl/rtl-shell.c index 4c80ae5db1..9f8a1364a8 100644 --- a/cpukit/libdl/rtl-shell.c +++ b/cpukit/libdl/rtl-shell.c @@ -15,7 +15,7 @@ * A simple RTL command to aid using the RTL. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-sym.c b/cpukit/libdl/rtl-sym.c index 9dd891525b..593069fba0 100644 --- a/cpukit/libdl/rtl-sym.c +++ b/cpukit/libdl/rtl-sym.c @@ -13,7 +13,7 @@ * @brief RTEMS Run-Time Linker Object File Symbol Table. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-trace.c b/cpukit/libdl/rtl-trace.c index 2793baa7cb..15d195ffad 100644 --- a/cpukit/libdl/rtl-trace.c +++ b/cpukit/libdl/rtl-trace.c @@ -16,7 +16,7 @@ * disable. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-unresolved.c b/cpukit/libdl/rtl-unresolved.c index fbfe909d2e..8e1c2abc90 100644 --- a/cpukit/libdl/rtl-unresolved.c +++ b/cpukit/libdl/rtl-unresolved.c @@ -13,7 +13,7 @@ * @brief RTEMS Run-Time Linker Object File Unresolved Relocations Table. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl-unwind-dw2.c b/cpukit/libdl/rtl-unwind-dw2.c index 29525db213..0526fa5e5b 100644 --- a/cpukit/libdl/rtl-unwind-dw2.c +++ b/cpukit/libdl/rtl-unwind-dw2.c @@ -15,7 +15,7 @@ * This is the RTL implementation. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libdl/rtl.c b/cpukit/libdl/rtl.c index d4103bace6..b86f7cc850 100644 --- a/cpukit/libdl/rtl.c +++ b/cpukit/libdl/rtl.c @@ -15,7 +15,7 @@ * This is the RTL implementation. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/defaults/default_are_nodes_equal.c b/cpukit/libfs/src/defaults/default_are_nodes_equal.c index c224a1324f..2ba47dc1f9 100644 --- a/cpukit/libfs/src/defaults/default_are_nodes_equal.c +++ b/cpukit/libfs/src/defaults/default_are_nodes_equal.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_chown.c b/cpukit/libfs/src/defaults/default_chown.c index 9fa0bb52dd..b3da5dc3e6 100644 --- a/cpukit/libfs/src/defaults/default_chown.c +++ b/cpukit/libfs/src/defaults/default_chown.c @@ -13,8 +13,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_clone.c b/cpukit/libfs/src/defaults/default_clone.c index cd63176dea..30a6d256b1 100644 --- a/cpukit/libfs/src/defaults/default_clone.c +++ b/cpukit/libfs/src/defaults/default_clone.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_eval_path.c b/cpukit/libfs/src/defaults/default_eval_path.c index f99d0c8e6b..ae4630b33a 100644 --- a/cpukit/libfs/src/defaults/default_eval_path.c +++ b/cpukit/libfs/src/defaults/default_eval_path.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_fchmod.c b/cpukit/libfs/src/defaults/default_fchmod.c index e505747b15..b3a3d3ae9c 100644 --- a/cpukit/libfs/src/defaults/default_fchmod.c +++ b/cpukit/libfs/src/defaults/default_fchmod.c @@ -13,8 +13,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_freenode.c b/cpukit/libfs/src/defaults/default_freenode.c index 520a9c37c8..6ae60115a6 100644 --- a/cpukit/libfs/src/defaults/default_freenode.c +++ b/cpukit/libfs/src/defaults/default_freenode.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_fstat.c b/cpukit/libfs/src/defaults/default_fstat.c index 88eeb34c0f..dfb62a8171 100644 --- a/cpukit/libfs/src/defaults/default_fstat.c +++ b/cpukit/libfs/src/defaults/default_fstat.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_fsync.c b/cpukit/libfs/src/defaults/default_fsync.c index 1b298fdb7c..0741eaf8e9 100644 --- a/cpukit/libfs/src/defaults/default_fsync.c +++ b/cpukit/libfs/src/defaults/default_fsync.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_fsync_success.c b/cpukit/libfs/src/defaults/default_fsync_success.c index 749c8c3872..b36b953fd0 100644 --- a/cpukit/libfs/src/defaults/default_fsync_success.c +++ b/cpukit/libfs/src/defaults/default_fsync_success.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_ftruncate.c b/cpukit/libfs/src/defaults/default_ftruncate.c index a94ab936dd..1270d6309c 100644 --- a/cpukit/libfs/src/defaults/default_ftruncate.c +++ b/cpukit/libfs/src/defaults/default_ftruncate.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_ftruncate_directory.c b/cpukit/libfs/src/defaults/default_ftruncate_directory.c index d7a0a8f217..6db07bd81d 100644 --- a/cpukit/libfs/src/defaults/default_ftruncate_directory.c +++ b/cpukit/libfs/src/defaults/default_ftruncate_directory.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_ioctl.c b/cpukit/libfs/src/defaults/default_ioctl.c index 8093e23b94..a6f12dde5d 100644 --- a/cpukit/libfs/src/defaults/default_ioctl.c +++ b/cpukit/libfs/src/defaults/default_ioctl.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_kqfilter.c b/cpukit/libfs/src/defaults/default_kqfilter.c index df21a8969d..8de8ff2735 100644 --- a/cpukit/libfs/src/defaults/default_kqfilter.c +++ b/cpukit/libfs/src/defaults/default_kqfilter.c @@ -20,8 +20,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_link.c b/cpukit/libfs/src/defaults/default_link.c index de84a69b3c..d40fc663dc 100644 --- a/cpukit/libfs/src/defaults/default_link.c +++ b/cpukit/libfs/src/defaults/default_link.c @@ -13,8 +13,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_lock_and_unlock.c b/cpukit/libfs/src/defaults/default_lock_and_unlock.c index adb992cf20..d543b9b6c2 100644 --- a/cpukit/libfs/src/defaults/default_lock_and_unlock.c +++ b/cpukit/libfs/src/defaults/default_lock_and_unlock.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_lseek.c b/cpukit/libfs/src/defaults/default_lseek.c index 08ef07a001..3c41147b5a 100644 --- a/cpukit/libfs/src/defaults/default_lseek.c +++ b/cpukit/libfs/src/defaults/default_lseek.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_lseek_directory.c b/cpukit/libfs/src/defaults/default_lseek_directory.c index e00a3ef640..bd600ea8b7 100644 --- a/cpukit/libfs/src/defaults/default_lseek_directory.c +++ b/cpukit/libfs/src/defaults/default_lseek_directory.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_lseek_file.c b/cpukit/libfs/src/defaults/default_lseek_file.c index f23e237519..68bc8b7fc2 100644 --- a/cpukit/libfs/src/defaults/default_lseek_file.c +++ b/cpukit/libfs/src/defaults/default_lseek_file.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_mknod.c b/cpukit/libfs/src/defaults/default_mknod.c index 1174ca04de..0bcda6d5af 100644 --- a/cpukit/libfs/src/defaults/default_mknod.c +++ b/cpukit/libfs/src/defaults/default_mknod.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_mmap.c b/cpukit/libfs/src/defaults/default_mmap.c index 08534eef31..52f5b96faa 100644 --- a/cpukit/libfs/src/defaults/default_mmap.c +++ b/cpukit/libfs/src/defaults/default_mmap.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_open.c b/cpukit/libfs/src/defaults/default_open.c index f2bd0a2a0b..d175515ec5 100644 --- a/cpukit/libfs/src/defaults/default_open.c +++ b/cpukit/libfs/src/defaults/default_open.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_poll.c b/cpukit/libfs/src/defaults/default_poll.c index a7c9378a8a..d7d6b55666 100644 --- a/cpukit/libfs/src/defaults/default_poll.c +++ b/cpukit/libfs/src/defaults/default_poll.c @@ -20,8 +20,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_readlink.c b/cpukit/libfs/src/defaults/default_readlink.c index fbdcd75560..21066b8204 100644 --- a/cpukit/libfs/src/defaults/default_readlink.c +++ b/cpukit/libfs/src/defaults/default_readlink.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_readv.c b/cpukit/libfs/src/defaults/default_readv.c index 9860b9997e..cf1a1e499e 100644 --- a/cpukit/libfs/src/defaults/default_readv.c +++ b/cpukit/libfs/src/defaults/default_readv.c @@ -23,8 +23,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_rename.c b/cpukit/libfs/src/defaults/default_rename.c index edaef54e58..f1d50f19b1 100644 --- a/cpukit/libfs/src/defaults/default_rename.c +++ b/cpukit/libfs/src/defaults/default_rename.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_rmnod.c b/cpukit/libfs/src/defaults/default_rmnod.c index 99d2a75dbc..60d9aa11ec 100644 --- a/cpukit/libfs/src/defaults/default_rmnod.c +++ b/cpukit/libfs/src/defaults/default_rmnod.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_statvfs.c b/cpukit/libfs/src/defaults/default_statvfs.c index 6b16d61338..46e53f62e9 100644 --- a/cpukit/libfs/src/defaults/default_statvfs.c +++ b/cpukit/libfs/src/defaults/default_statvfs.c @@ -13,8 +13,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_symlink.c b/cpukit/libfs/src/defaults/default_symlink.c index d8f13c1864..a6cd10d5e5 100644 --- a/cpukit/libfs/src/defaults/default_symlink.c +++ b/cpukit/libfs/src/defaults/default_symlink.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_utime.c b/cpukit/libfs/src/defaults/default_utime.c index 8b74a61127..866d73ab64 100644 --- a/cpukit/libfs/src/defaults/default_utime.c +++ b/cpukit/libfs/src/defaults/default_utime.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/defaults/default_writev.c b/cpukit/libfs/src/defaults/default_writev.c index 2aff1599ab..92b5ca1508 100644 --- a/cpukit/libfs/src/defaults/default_writev.c +++ b/cpukit/libfs/src/defaults/default_writev.c @@ -23,8 +23,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/libio_.h> diff --git a/cpukit/libfs/src/dosfs/fat.c b/cpukit/libfs/src/dosfs/fat.c index 8979065638..d10589d19c 100644 --- a/cpukit/libfs/src/dosfs/fat.c +++ b/cpukit/libfs/src/dosfs/fat.c @@ -10,7 +10,7 @@ * Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru> */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/fat_fat_operations.c b/cpukit/libfs/src/dosfs/fat_fat_operations.c index 71fbe07772..4ded24074f 100644 --- a/cpukit/libfs/src/dosfs/fat_fat_operations.c +++ b/cpukit/libfs/src/dosfs/fat_fat_operations.c @@ -10,7 +10,7 @@ * Author: Eugeny S. Mints <Eugeny.Mints@oktet.ru> */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/fat_file.c b/cpukit/libfs/src/dosfs/fat_file.c index e7f593ec1f..57b1f6d91f 100644 --- a/cpukit/libfs/src/dosfs/fat_file.c +++ b/cpukit/libfs/src/dosfs/fat_file.c @@ -13,7 +13,7 @@ #define MSDOS_TRACE 1 -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_conv.c b/cpukit/libfs/src/dosfs/msdos_conv.c index d7ef97ad2a..1d2ff58105 100644 --- a/cpukit/libfs/src/dosfs/msdos_conv.c +++ b/cpukit/libfs/src/dosfs/msdos_conv.c @@ -27,7 +27,7 @@ * Copyright (c) 2013 embedded brains GmbH. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_create.c b/cpukit/libfs/src/dosfs/msdos_create.c index 5f594bf9c2..b3a1c18014 100644 --- a/cpukit/libfs/src/dosfs/msdos_create.c +++ b/cpukit/libfs/src/dosfs/msdos_create.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. * */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_dir.c b/cpukit/libfs/src/dosfs/msdos_dir.c index fee6491c7d..d5322229e3 100644 --- a/cpukit/libfs/src/dosfs/msdos_dir.c +++ b/cpukit/libfs/src/dosfs/msdos_dir.c @@ -16,7 +16,7 @@ * found in the file LICENSE in this distribution or at * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_eval.c b/cpukit/libfs/src/dosfs/msdos_eval.c index 3c1294698c..4220b9ec11 100644 --- a/cpukit/libfs/src/dosfs/msdos_eval.c +++ b/cpukit/libfs/src/dosfs/msdos_eval.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_file.c b/cpukit/libfs/src/dosfs/msdos_file.c index 205631217f..770c28ffcf 100644 --- a/cpukit/libfs/src/dosfs/msdos_file.c +++ b/cpukit/libfs/src/dosfs/msdos_file.c @@ -13,7 +13,7 @@ * found in the file LICENSE in this distribution or at * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_format.c b/cpukit/libfs/src/dosfs/msdos_format.c index 326040f004..008d2285dc 100644 --- a/cpukit/libfs/src/dosfs/msdos_format.c +++ b/cpukit/libfs/src/dosfs/msdos_format.c @@ -19,7 +19,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_free.c b/cpukit/libfs/src/dosfs/msdos_free.c index a19983febe..1e66078eff 100644 --- a/cpukit/libfs/src/dosfs/msdos_free.c +++ b/cpukit/libfs/src/dosfs/msdos_free.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_fsunmount.c b/cpukit/libfs/src/dosfs/msdos_fsunmount.c index 6b44ab0fdb..e66602ccd8 100644 --- a/cpukit/libfs/src/dosfs/msdos_fsunmount.c +++ b/cpukit/libfs/src/dosfs/msdos_fsunmount.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_handlers_dir.c b/cpukit/libfs/src/dosfs/msdos_handlers_dir.c index bc2d8961c9..805f239c95 100644 --- a/cpukit/libfs/src/dosfs/msdos_handlers_dir.c +++ b/cpukit/libfs/src/dosfs/msdos_handlers_dir.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_handlers_file.c b/cpukit/libfs/src/dosfs/msdos_handlers_file.c index ed72fb6512..9399a4f2f0 100644 --- a/cpukit/libfs/src/dosfs/msdos_handlers_file.c +++ b/cpukit/libfs/src/dosfs/msdos_handlers_file.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_init.c b/cpukit/libfs/src/dosfs/msdos_init.c index 6ae77c86ae..dc9c76437d 100644 --- a/cpukit/libfs/src/dosfs/msdos_init.c +++ b/cpukit/libfs/src/dosfs/msdos_init.c @@ -20,7 +20,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_initsupp.c b/cpukit/libfs/src/dosfs/msdos_initsupp.c index a8451615d2..c581c8b685 100644 --- a/cpukit/libfs/src/dosfs/msdos_initsupp.c +++ b/cpukit/libfs/src/dosfs/msdos_initsupp.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_misc.c b/cpukit/libfs/src/dosfs/msdos_misc.c index 20fcbb3b75..3f73bd9029 100644 --- a/cpukit/libfs/src/dosfs/msdos_misc.c +++ b/cpukit/libfs/src/dosfs/msdos_misc.c @@ -19,7 +19,7 @@ #define MSDOS_TRACE 1 -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_mknod.c b/cpukit/libfs/src/dosfs/msdos_mknod.c index 28b34636d4..b7270c86f8 100644 --- a/cpukit/libfs/src/dosfs/msdos_mknod.c +++ b/cpukit/libfs/src/dosfs/msdos_mknod.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_rename.c b/cpukit/libfs/src/dosfs/msdos_rename.c index 47d70ecc2d..e3beee6842 100644 --- a/cpukit/libfs/src/dosfs/msdos_rename.c +++ b/cpukit/libfs/src/dosfs/msdos_rename.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. * */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/dosfs/msdos_rmnod.c b/cpukit/libfs/src/dosfs/msdos_rmnod.c index 78aa99091b..92f8bdb01e 100644 --- a/cpukit/libfs/src/dosfs/msdos_rmnod.c +++ b/cpukit/libfs/src/dosfs/msdos_rmnod.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include "msdos.h" diff --git a/cpukit/libfs/src/imfs/deviceio.c b/cpukit/libfs/src/imfs/deviceio.c index 078ef7b1c2..16ce424aa4 100644 --- a/cpukit/libfs/src/imfs/deviceio.c +++ b/cpukit/libfs/src/imfs/deviceio.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_add_node.c b/cpukit/libfs/src/imfs/imfs_add_node.c index ad26c5b26c..814736284d 100644 --- a/cpukit/libfs/src/imfs/imfs_add_node.c +++ b/cpukit/libfs/src/imfs/imfs_add_node.c @@ -33,7 +33,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/imfs/imfs_chown.c b/cpukit/libfs/src/imfs/imfs_chown.c index 4218d63a1d..1b7fb9b5e4 100644 --- a/cpukit/libfs/src/imfs/imfs_chown.c +++ b/cpukit/libfs/src/imfs/imfs_chown.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_config.c b/cpukit/libfs/src/imfs/imfs_config.c index 5087ede0e1..fe65fa720a 100644 --- a/cpukit/libfs/src/imfs/imfs_config.c +++ b/cpukit/libfs/src/imfs/imfs_config.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/imfs/imfs_creat.c b/cpukit/libfs/src/imfs/imfs_creat.c index e476d74852..08bbc086bb 100644 --- a/cpukit/libfs/src/imfs/imfs_creat.c +++ b/cpukit/libfs/src/imfs/imfs_creat.c @@ -13,8 +13,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_dir.c b/cpukit/libfs/src/imfs/imfs_dir.c index d8f2b0388a..f4b18b499c 100644 --- a/cpukit/libfs/src/imfs/imfs_dir.c +++ b/cpukit/libfs/src/imfs/imfs_dir.c @@ -13,8 +13,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_dir_default.c b/cpukit/libfs/src/imfs/imfs_dir_default.c index 7bb4f378e1..a58f0d79b1 100644 --- a/cpukit/libfs/src/imfs/imfs_dir_default.c +++ b/cpukit/libfs/src/imfs/imfs_dir_default.c @@ -13,8 +13,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_dir_minimal.c b/cpukit/libfs/src/imfs/imfs_dir_minimal.c index 08f69daf7b..25e585e82b 100644 --- a/cpukit/libfs/src/imfs/imfs_dir_minimal.c +++ b/cpukit/libfs/src/imfs/imfs_dir_minimal.c @@ -13,8 +13,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_eval.c b/cpukit/libfs/src/imfs/imfs_eval.c index e8f0d7357f..512b80e58c 100644 --- a/cpukit/libfs/src/imfs/imfs_eval.c +++ b/cpukit/libfs/src/imfs/imfs_eval.c @@ -17,8 +17,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_eval_devfs.c b/cpukit/libfs/src/imfs/imfs_eval_devfs.c index d25e4ff8e2..69c8cc4c0f 100644 --- a/cpukit/libfs/src/imfs/imfs_eval_devfs.c +++ b/cpukit/libfs/src/imfs/imfs_eval_devfs.c @@ -33,7 +33,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/imfs/imfs_fchmod.c b/cpukit/libfs/src/imfs/imfs_fchmod.c index f554bcbd5d..8537529a19 100644 --- a/cpukit/libfs/src/imfs/imfs_fchmod.c +++ b/cpukit/libfs/src/imfs/imfs_fchmod.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_fifo.c b/cpukit/libfs/src/imfs/imfs_fifo.c index 817053d143..e66a436479 100644 --- a/cpukit/libfs/src/imfs/imfs_fifo.c +++ b/cpukit/libfs/src/imfs/imfs_fifo.c @@ -13,8 +13,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_fsunmount.c b/cpukit/libfs/src/imfs/imfs_fsunmount.c index f3cf877e25..864c933420 100644 --- a/cpukit/libfs/src/imfs/imfs_fsunmount.c +++ b/cpukit/libfs/src/imfs/imfs_fsunmount.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_handlers_device.c b/cpukit/libfs/src/imfs/imfs_handlers_device.c index 9097ca1ccf..12a19bd663 100644 --- a/cpukit/libfs/src/imfs/imfs_handlers_device.c +++ b/cpukit/libfs/src/imfs/imfs_handlers_device.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_init.c b/cpukit/libfs/src/imfs/imfs_init.c index 4bda01bd42..1b9b76912a 100644 --- a/cpukit/libfs/src/imfs/imfs_init.c +++ b/cpukit/libfs/src/imfs/imfs_init.c @@ -15,8 +15,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_initsupp.c b/cpukit/libfs/src/imfs/imfs_initsupp.c index b6699643e9..2c75ef5ff2 100644 --- a/cpukit/libfs/src/imfs/imfs_initsupp.c +++ b/cpukit/libfs/src/imfs/imfs_initsupp.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_linfile.c b/cpukit/libfs/src/imfs/imfs_linfile.c index 2044cc66fc..be9dea693b 100644 --- a/cpukit/libfs/src/imfs/imfs_linfile.c +++ b/cpukit/libfs/src/imfs/imfs_linfile.c @@ -13,8 +13,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <string.h> diff --git a/cpukit/libfs/src/imfs/imfs_link.c b/cpukit/libfs/src/imfs/imfs_link.c index 842704f082..87211ad93e 100644 --- a/cpukit/libfs/src/imfs/imfs_link.c +++ b/cpukit/libfs/src/imfs/imfs_link.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_load_tar.c b/cpukit/libfs/src/imfs/imfs_load_tar.c index ed2d2a0f97..47a506b042 100644 --- a/cpukit/libfs/src/imfs/imfs_load_tar.c +++ b/cpukit/libfs/src/imfs/imfs_load_tar.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/imfs/imfs_make_generic_node.c b/cpukit/libfs/src/imfs/imfs_make_generic_node.c index 27ef618d0b..3d1af1da41 100644 --- a/cpukit/libfs/src/imfs/imfs_make_generic_node.c +++ b/cpukit/libfs/src/imfs/imfs_make_generic_node.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_make_linfile.c b/cpukit/libfs/src/imfs/imfs_make_linfile.c index 2eef953da5..0a81e3848d 100644 --- a/cpukit/libfs/src/imfs/imfs_make_linfile.c +++ b/cpukit/libfs/src/imfs/imfs_make_linfile.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/imfs/imfs_memfile.c b/cpukit/libfs/src/imfs/imfs_memfile.c index bd868a8f84..c48e253f8b 100644 --- a/cpukit/libfs/src/imfs/imfs_memfile.c +++ b/cpukit/libfs/src/imfs/imfs_memfile.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_mknod.c b/cpukit/libfs/src/imfs/imfs_mknod.c index f122df4c6a..65f48416d1 100644 --- a/cpukit/libfs/src/imfs/imfs_mknod.c +++ b/cpukit/libfs/src/imfs/imfs_mknod.c @@ -17,8 +17,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_mount.c b/cpukit/libfs/src/imfs/imfs_mount.c index bad4fb9ddf..b00a59d85b 100644 --- a/cpukit/libfs/src/imfs/imfs_mount.c +++ b/cpukit/libfs/src/imfs/imfs_mount.c @@ -17,8 +17,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_node.c b/cpukit/libfs/src/imfs/imfs_node.c index db4799ce94..f5266b650b 100644 --- a/cpukit/libfs/src/imfs/imfs_node.c +++ b/cpukit/libfs/src/imfs/imfs_node.c @@ -17,7 +17,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/imfs/imfs_node_destroy_default.c b/cpukit/libfs/src/imfs/imfs_node_destroy_default.c index 2340baa8d1..84f06a30fb 100644 --- a/cpukit/libfs/src/imfs/imfs_node_destroy_default.c +++ b/cpukit/libfs/src/imfs/imfs_node_destroy_default.c @@ -33,7 +33,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/imfs/imfs_rename.c b/cpukit/libfs/src/imfs/imfs_rename.c index bf86f320f6..164a7896ab 100644 --- a/cpukit/libfs/src/imfs/imfs_rename.c +++ b/cpukit/libfs/src/imfs/imfs_rename.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_rmnod.c b/cpukit/libfs/src/imfs/imfs_rmnod.c index eca1b6f66e..9fad0b7d1b 100644 --- a/cpukit/libfs/src/imfs/imfs_rmnod.c +++ b/cpukit/libfs/src/imfs/imfs_rmnod.c @@ -17,8 +17,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_stat.c b/cpukit/libfs/src/imfs/imfs_stat.c index 59a1d8d9ea..3e73a150b2 100644 --- a/cpukit/libfs/src/imfs/imfs_stat.c +++ b/cpukit/libfs/src/imfs/imfs_stat.c @@ -17,8 +17,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_stat_file.c b/cpukit/libfs/src/imfs/imfs_stat_file.c index ef1d0095a6..20d538f692 100644 --- a/cpukit/libfs/src/imfs/imfs_stat_file.c +++ b/cpukit/libfs/src/imfs/imfs_stat_file.c @@ -13,8 +13,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_symlink.c b/cpukit/libfs/src/imfs/imfs_symlink.c index 6f37374465..58eecae910 100644 --- a/cpukit/libfs/src/imfs/imfs_symlink.c +++ b/cpukit/libfs/src/imfs/imfs_symlink.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_unmount.c b/cpukit/libfs/src/imfs/imfs_unmount.c index 47cd3e00b4..6ed3ba657e 100644 --- a/cpukit/libfs/src/imfs/imfs_unmount.c +++ b/cpukit/libfs/src/imfs/imfs_unmount.c @@ -17,8 +17,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/imfs_utime.c b/cpukit/libfs/src/imfs/imfs_utime.c index aa11e5284b..e02545c167 100644 --- a/cpukit/libfs/src/imfs/imfs_utime.c +++ b/cpukit/libfs/src/imfs/imfs_utime.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/imfs.h> diff --git a/cpukit/libfs/src/imfs/ioman.c b/cpukit/libfs/src/imfs/ioman.c index 140d9e2c2f..60d4777980 100644 --- a/cpukit/libfs/src/imfs/ioman.c +++ b/cpukit/libfs/src/imfs/ioman.c @@ -17,8 +17,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <sys/stat.h> diff --git a/cpukit/libfs/src/nfsclient/src/nfs.c b/cpukit/libfs/src/nfsclient/src/nfs.c index bb338d58ca..411a478c0d 100644 --- a/cpukit/libfs/src/nfsclient/src/nfs.c +++ b/cpukit/libfs/src/nfsclient/src/nfs.c @@ -59,8 +59,8 @@ * ------------------ SLAC Software Notices, Set 4 OTT.002a, 2004 FEB 03 */ -#ifdef HAVE_CONFIG_H -#include <config.h> +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems.h> diff --git a/cpukit/libfs/src/nfsclient/src/rpcio.c b/cpukit/libfs/src/nfsclient/src/rpcio.c index f10c0bdd3c..886226e104 100644 --- a/cpukit/libfs/src/nfsclient/src/rpcio.c +++ b/cpukit/libfs/src/nfsclient/src/rpcio.c @@ -63,7 +63,7 @@ * ------------------ SLAC Software Notices, Set 4 OTT.002a, 2004 FEB 03 */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/nfsclient/src/sock_mbuf.c b/cpukit/libfs/src/nfsclient/src/sock_mbuf.c index d8acd07a3d..45a2cd6dcb 100644 --- a/cpukit/libfs/src/nfsclient/src/sock_mbuf.c +++ b/cpukit/libfs/src/nfsclient/src/sock_mbuf.c @@ -74,7 +74,7 @@ * SOFTWARE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/nfsclient/src/xdr_mbuf.c b/cpukit/libfs/src/nfsclient/src/xdr_mbuf.c index 74f549e3f7..451c385b41 100644 --- a/cpukit/libfs/src/nfsclient/src/xdr_mbuf.c +++ b/cpukit/libfs/src/nfsclient/src/xdr_mbuf.c @@ -57,7 +57,7 @@ static char *rcsid = "$FreeBSD: src/lib/libc/xdr/xdr_mem.c,v 1.8 1999/08/28 00:0 * use. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/pipe/fifo.c b/cpukit/libfs/src/pipe/fifo.c index 0a3cbf3d65..077d277021 100644 --- a/cpukit/libfs/src/pipe/fifo.c +++ b/cpukit/libfs/src/pipe/fifo.c @@ -14,7 +14,7 @@ */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-bitmaps.c b/cpukit/libfs/src/rfs/rtems-rfs-bitmaps.c index 741ae5216c..7d3556f9aa 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-bitmaps.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-bitmaps.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-block.c b/cpukit/libfs/src/rfs/rtems-rfs-block.c index 0157b21753..da84d0b56f 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-block.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-block.c @@ -32,7 +32,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-buffer-bdbuf.c b/cpukit/libfs/src/rfs/rtems-rfs-buffer-bdbuf.c index 07fa9c761e..11513bfbfa 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-buffer-bdbuf.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-buffer-bdbuf.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-buffer-devio.c b/cpukit/libfs/src/rfs/rtems-rfs-buffer-devio.c index 751b8f7515..4537eaf985 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-buffer-devio.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-buffer-devio.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-buffer.c b/cpukit/libfs/src/rfs/rtems-rfs-buffer.c index 4a66840b17..e5e5e7dad9 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-buffer.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-buffer.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-dir-hash.c b/cpukit/libfs/src/rfs/rtems-rfs-dir-hash.c index a0669992d3..75cbef2621 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-dir-hash.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-dir-hash.c @@ -5,7 +5,7 @@ * @ingroup rtems_rfs */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-dir.c b/cpukit/libfs/src/rfs/rtems-rfs-dir.c index c9a2772895..09e8782ffc 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-dir.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-dir.c @@ -23,7 +23,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-file-system.c b/cpukit/libfs/src/rfs/rtems-rfs-file-system.c index 68f0fd87b3..6089bf2d14 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-file-system.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-file-system.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-file.c b/cpukit/libfs/src/rfs/rtems-rfs-file.c index fbf35828db..897cdc1bea 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-file.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-file.c @@ -15,7 +15,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-format.c b/cpukit/libfs/src/rfs/rtems-rfs-format.c index 1a9798e804..82387538b4 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-format.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-format.c @@ -15,7 +15,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-group.c b/cpukit/libfs/src/rfs/rtems-rfs-group.c index 976bac2d35..1405f2afa3 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-group.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-group.c @@ -17,7 +17,7 @@ */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-inode.c b/cpukit/libfs/src/rfs/rtems-rfs-inode.c index 57439a03bd..8124b399a2 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-inode.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-inode.c @@ -15,7 +15,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-link.c b/cpukit/libfs/src/rfs/rtems-rfs-link.c index 86022d4176..9689a56b09 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-link.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-link.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-mutex.c b/cpukit/libfs/src/rfs/rtems-rfs-mutex.c index 9c97c829ed..f05c3e3155 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-mutex.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-mutex.c @@ -12,7 +12,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-rtems-dev.c b/cpukit/libfs/src/rfs/rtems-rfs-rtems-dev.c index 3c69eaa30e..1f28fa9b38 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-rtems-dev.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-rtems-dev.c @@ -16,8 +16,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include "rtems-rfs-rtems.h" diff --git a/cpukit/libfs/src/rfs/rtems-rfs-rtems-dir.c b/cpukit/libfs/src/rfs/rtems-rfs-rtems-dir.c index ab4e56f53d..38e8f3764b 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-rtems-dir.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-rtems-dir.c @@ -12,7 +12,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-rtems-file.c b/cpukit/libfs/src/rfs/rtems-rfs-rtems-file.c index 69e5df2a97..8d94f1c909 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-rtems-file.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-rtems-file.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-rtems-utils.c b/cpukit/libfs/src/rfs/rtems-rfs-rtems-utils.c index 509ca50407..61ea42caeb 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-rtems-utils.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-rtems-utils.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-rtems.c b/cpukit/libfs/src/rfs/rtems-rfs-rtems.c index 45455eb85c..c4d3c06067 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-rtems.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-rtems.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-shell.c b/cpukit/libfs/src/rfs/rtems-rfs-shell.c index 3b31385060..a3ad6b24d1 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-shell.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-shell.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libfs/src/rfs/rtems-rfs-trace.c b/cpukit/libfs/src/rfs/rtems-rfs-trace.c index f098ea4807..f2cc2dbae2 100644 --- a/cpukit/libfs/src/rfs/rtems-rfs-trace.c +++ b/cpukit/libfs/src/rfs/rtems-rfs-trace.c @@ -12,7 +12,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libgnat/adasupp.c b/cpukit/libgnat/adasupp.c index b8f3484f6b..54792cf1cd 100644 --- a/cpukit/libgnat/adasupp.c +++ b/cpukit/libgnat/adasupp.c @@ -1,4 +1,4 @@ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libi2c/libi2c.c b/cpukit/libi2c/libi2c.c index 233cb683b0..cee50af57d 100644 --- a/cpukit/libi2c/libi2c.c +++ b/cpukit/libi2c/libi2c.c @@ -48,7 +48,7 @@ * adaptations to also handle SPI devices * by Thomas Doerfler, embedded brains GmbH, Puchheim, Germany */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libmisc/cpuuse/cpuinforeport.c b/cpukit/libmisc/cpuuse/cpuinforeport.c index 389a26c174..b51c9d7451 100644 --- a/cpukit/libmisc/cpuuse/cpuinforeport.c +++ b/cpukit/libmisc/cpuuse/cpuinforeport.c @@ -12,8 +12,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/cpuuse.h> diff --git a/cpukit/libmisc/fb/mw_print.c b/cpukit/libmisc/fb/mw_print.c index c04f5a217a..1d226b7d0f 100644 --- a/cpukit/libmisc/fb/mw_print.c +++ b/cpukit/libmisc/fb/mw_print.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libmisc/shell/main_blkstats.c b/cpukit/libmisc/shell/main_blkstats.c index 69548cfa7d..7093d47f9b 100644 --- a/cpukit/libmisc/shell/main_blkstats.c +++ b/cpukit/libmisc/shell/main_blkstats.c @@ -12,8 +12,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/blkdev.h> diff --git a/cpukit/libmisc/shell/main_cmdchmod.c b/cpukit/libmisc/shell/main_cmdchmod.c index ea125fddd8..26772343e3 100644 --- a/cpukit/libmisc/shell/main_cmdchmod.c +++ b/cpukit/libmisc/shell/main_cmdchmod.c @@ -12,8 +12,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <errno.h> diff --git a/cpukit/libmisc/shell/main_cmdchown.c b/cpukit/libmisc/shell/main_cmdchown.c index 74576394f6..a5496eb38a 100644 --- a/cpukit/libmisc/shell/main_cmdchown.c +++ b/cpukit/libmisc/shell/main_cmdchown.c @@ -12,8 +12,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <errno.h> diff --git a/cpukit/libmisc/shell/main_cmdls.c b/cpukit/libmisc/shell/main_cmdls.c index f08925c3f3..55f97a315c 100644 --- a/cpukit/libmisc/shell/main_cmdls.c +++ b/cpukit/libmisc/shell/main_cmdls.c @@ -12,8 +12,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <errno.h> diff --git a/cpukit/libmisc/shell/main_cpuinfo.c b/cpukit/libmisc/shell/main_cpuinfo.c index 9245c0f147..1a336fbb57 100644 --- a/cpukit/libmisc/shell/main_cpuinfo.c +++ b/cpukit/libmisc/shell/main_cpuinfo.c @@ -12,8 +12,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/shell.h> diff --git a/cpukit/libmisc/shell/main_hexdump.c b/cpukit/libmisc/shell/main_hexdump.c index df7df3f1e7..6673910746 100644 --- a/cpukit/libmisc/shell/main_hexdump.c +++ b/cpukit/libmisc/shell/main_hexdump.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libmisc/shell/main_lsof.c b/cpukit/libmisc/shell/main_lsof.c index 43bf8b18a0..57e81c0295 100644 --- a/cpukit/libmisc/shell/main_lsof.c +++ b/cpukit/libmisc/shell/main_lsof.c @@ -12,8 +12,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <stdio.h> diff --git a/cpukit/libmisc/shell/main_profreport.c b/cpukit/libmisc/shell/main_profreport.c index 499e55d1aa..2504282ae3 100644 --- a/cpukit/libmisc/shell/main_profreport.c +++ b/cpukit/libmisc/shell/main_profreport.c @@ -12,8 +12,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <stdio.h> diff --git a/cpukit/libmisc/shell/shell_makeargs.c b/cpukit/libmisc/shell/shell_makeargs.c index 5d4657677b..7ee556a811 100644 --- a/cpukit/libmisc/shell/shell_makeargs.c +++ b/cpukit/libmisc/shell/shell_makeargs.c @@ -9,7 +9,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libmisc/uuid/gen_uuid.c b/cpukit/libmisc/uuid/gen_uuid.c index 67cac77223..3ca75a08ce 100644 --- a/cpukit/libmisc/uuid/gen_uuid.c +++ b/cpukit/libmisc/uuid/gen_uuid.c @@ -32,7 +32,7 @@ * %End-Header% */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/base64.c b/cpukit/libnetworking/libc/base64.c index ad2db725d3..7369c36509 100644 --- a/cpukit/libnetworking/libc/base64.c +++ b/cpukit/libnetworking/libc/base64.c @@ -42,7 +42,7 @@ * IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/gethostbydns.c b/cpukit/libnetworking/libc/gethostbydns.c index 3d967e9fe5..66f24e1cb8 100644 --- a/cpukit/libnetworking/libc/gethostbydns.c +++ b/cpukit/libnetworking/libc/gethostbydns.c @@ -55,7 +55,7 @@ * --Copyright-- */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/gethostbyht.c b/cpukit/libnetworking/libc/gethostbyht.c index 6d9fc1e0a5..50f31294a9 100644 --- a/cpukit/libnetworking/libc/gethostbyht.c +++ b/cpukit/libnetworking/libc/gethostbyht.c @@ -53,7 +53,7 @@ * --Copyright-- */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/gethostbynis.c b/cpukit/libnetworking/libc/gethostbynis.c index d157f3c777..11cb020543 100644 --- a/cpukit/libnetworking/libc/gethostbynis.c +++ b/cpukit/libnetworking/libc/gethostbynis.c @@ -25,7 +25,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/gethostnamadr.c b/cpukit/libnetworking/libc/gethostnamadr.c index df6a4a25d3..dfb760a4d5 100644 --- a/cpukit/libnetworking/libc/gethostnamadr.c +++ b/cpukit/libnetworking/libc/gethostnamadr.c @@ -25,7 +25,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/getnetbydns.c b/cpukit/libnetworking/libc/getnetbydns.c index 70f23124fc..f093347f53 100644 --- a/cpukit/libnetworking/libc/getnetbydns.c +++ b/cpukit/libnetworking/libc/getnetbydns.c @@ -60,7 +60,7 @@ * copyright notice and this permission notice appear in all copies. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/getnetbyht.c b/cpukit/libnetworking/libc/getnetbyht.c index 9e21767c32..b41220e8be 100644 --- a/cpukit/libnetworking/libc/getnetbyht.c +++ b/cpukit/libnetworking/libc/getnetbyht.c @@ -43,7 +43,7 @@ * from getnetent.c 1.1 (Coimbra) 93/06/02 */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/getnetbynis.c b/cpukit/libnetworking/libc/getnetbynis.c index 1aa426f102..c2e40946a2 100644 --- a/cpukit/libnetworking/libc/getnetbynis.c +++ b/cpukit/libnetworking/libc/getnetbynis.c @@ -25,7 +25,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/getnetnamadr.c b/cpukit/libnetworking/libc/getnetnamadr.c index 0e11ba665d..f16572e3e0 100644 --- a/cpukit/libnetworking/libc/getnetnamadr.c +++ b/cpukit/libnetworking/libc/getnetnamadr.c @@ -25,7 +25,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/getproto.c b/cpukit/libnetworking/libc/getproto.c index 6c6149aeff..23bab628ea 100644 --- a/cpukit/libnetworking/libc/getproto.c +++ b/cpukit/libnetworking/libc/getproto.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/getprotoent.c b/cpukit/libnetworking/libc/getprotoent.c index 6b046eabe4..6b3ef189f1 100644 --- a/cpukit/libnetworking/libc/getprotoent.c +++ b/cpukit/libnetworking/libc/getprotoent.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/getprotoname.c b/cpukit/libnetworking/libc/getprotoname.c index ee8b2f5443..e0e57fb90f 100644 --- a/cpukit/libnetworking/libc/getprotoname.c +++ b/cpukit/libnetworking/libc/getprotoname.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/getservbyname.c b/cpukit/libnetworking/libc/getservbyname.c index 80c9284175..bb662c2281 100644 --- a/cpukit/libnetworking/libc/getservbyname.c +++ b/cpukit/libnetworking/libc/getservbyname.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/getservbyport.c b/cpukit/libnetworking/libc/getservbyport.c index 9bc0ab3c36..4a47e843ce 100644 --- a/cpukit/libnetworking/libc/getservbyport.c +++ b/cpukit/libnetworking/libc/getservbyport.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/getservent.c b/cpukit/libnetworking/libc/getservent.c index a82e3a82d4..f79a0ed5cb 100644 --- a/cpukit/libnetworking/libc/getservent.c +++ b/cpukit/libnetworking/libc/getservent.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/herror.c b/cpukit/libnetworking/libc/herror.c index d6ebcb90c6..d65d60722b 100644 --- a/cpukit/libnetworking/libc/herror.c +++ b/cpukit/libnetworking/libc/herror.c @@ -50,7 +50,7 @@ * SOFTWARE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/inet_lnaof.c b/cpukit/libnetworking/libc/inet_lnaof.c index f9e182b869..c88331dcc2 100644 --- a/cpukit/libnetworking/libc/inet_lnaof.c +++ b/cpukit/libnetworking/libc/inet_lnaof.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/inet_makeaddr.c b/cpukit/libnetworking/libc/inet_makeaddr.c index 887c611906..4805af7516 100644 --- a/cpukit/libnetworking/libc/inet_makeaddr.c +++ b/cpukit/libnetworking/libc/inet_makeaddr.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/inet_netof.c b/cpukit/libnetworking/libc/inet_netof.c index 8ff3407376..175f24f90f 100644 --- a/cpukit/libnetworking/libc/inet_netof.c +++ b/cpukit/libnetworking/libc/inet_netof.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/inet_network.c b/cpukit/libnetworking/libc/inet_network.c index 098867f906..d838dc076f 100644 --- a/cpukit/libnetworking/libc/inet_network.c +++ b/cpukit/libnetworking/libc/inet_network.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/inet_pton.c b/cpukit/libnetworking/libc/inet_pton.c index 3dc1966027..de87cf5590 100644 --- a/cpukit/libnetworking/libc/inet_pton.c +++ b/cpukit/libnetworking/libc/inet_pton.c @@ -16,7 +16,7 @@ * SOFTWARE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/linkaddr.c b/cpukit/libnetworking/libc/linkaddr.c index c8d99c6fff..dee7cb716f 100644 --- a/cpukit/libnetworking/libc/linkaddr.c +++ b/cpukit/libnetworking/libc/linkaddr.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/map_v4v6.c b/cpukit/libnetworking/libc/map_v4v6.c index a0b1860fa3..529262d01e 100644 --- a/cpukit/libnetworking/libc/map_v4v6.c +++ b/cpukit/libnetworking/libc/map_v4v6.c @@ -55,7 +55,7 @@ * --Copyright-- */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/ns_name.c b/cpukit/libnetworking/libc/ns_name.c index 0ecd2f4772..2032171ea2 100644 --- a/cpukit/libnetworking/libc/ns_name.c +++ b/cpukit/libnetworking/libc/ns_name.c @@ -17,7 +17,7 @@ * SOFTWARE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/ns_netint.c b/cpukit/libnetworking/libc/ns_netint.c index dcdcacb435..da28e68e61 100644 --- a/cpukit/libnetworking/libc/ns_netint.c +++ b/cpukit/libnetworking/libc/ns_netint.c @@ -19,7 +19,7 @@ /* Import. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/ns_parse.c b/cpukit/libnetworking/libc/ns_parse.c index 3b676732fb..c82c90c0b4 100644 --- a/cpukit/libnetworking/libc/ns_parse.c +++ b/cpukit/libnetworking/libc/ns_parse.c @@ -17,7 +17,7 @@ * SOFTWARE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/ns_print.c b/cpukit/libnetworking/libc/ns_print.c index 1cb6e8fdfb..0760f99b14 100644 --- a/cpukit/libnetworking/libc/ns_print.c +++ b/cpukit/libnetworking/libc/ns_print.c @@ -19,7 +19,7 @@ /* Import. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/ns_ttl.c b/cpukit/libnetworking/libc/ns_ttl.c index a0c8baa2d2..df8674747a 100644 --- a/cpukit/libnetworking/libc/ns_ttl.c +++ b/cpukit/libnetworking/libc/ns_ttl.c @@ -19,7 +19,7 @@ /* Import. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/nsap_addr.c b/cpukit/libnetworking/libc/nsap_addr.c index 29ecb05a31..deaa127b0f 100644 --- a/cpukit/libnetworking/libc/nsap_addr.c +++ b/cpukit/libnetworking/libc/nsap_addr.c @@ -17,7 +17,7 @@ * SOFTWARE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/rcmd.c b/cpukit/libnetworking/libc/rcmd.c index dde1acfaee..2bb3b721e6 100644 --- a/cpukit/libnetworking/libc/rcmd.c +++ b/cpukit/libnetworking/libc/rcmd.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/recv.c b/cpukit/libnetworking/libc/recv.c index 9f33d5c881..a3325d3447 100644 --- a/cpukit/libnetworking/libc/recv.c +++ b/cpukit/libnetworking/libc/recv.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/res_comp.c b/cpukit/libnetworking/libc/res_comp.c index cd4820114e..e24d99dd0b 100644 --- a/cpukit/libnetworking/libc/res_comp.c +++ b/cpukit/libnetworking/libc/res_comp.c @@ -66,7 +66,7 @@ * SOFTWARE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/res_data.c b/cpukit/libnetworking/libc/res_data.c index cd1a25ca83..35138a5e7f 100644 --- a/cpukit/libnetworking/libc/res_data.c +++ b/cpukit/libnetworking/libc/res_data.c @@ -17,7 +17,7 @@ * SOFTWARE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/res_debug.c b/cpukit/libnetworking/libc/res_debug.c index 5ce5125fdf..f2118069b1 100644 --- a/cpukit/libnetworking/libc/res_debug.c +++ b/cpukit/libnetworking/libc/res_debug.c @@ -95,7 +95,7 @@ * SOFTWARE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/res_init.c b/cpukit/libnetworking/libc/res_init.c index a5f7fc9b4f..0a260a116f 100644 --- a/cpukit/libnetworking/libc/res_init.c +++ b/cpukit/libnetworking/libc/res_init.c @@ -70,7 +70,7 @@ * SOFTWARE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/res_mkquery.c b/cpukit/libnetworking/libc/res_mkquery.c index e663d9821a..c0ffebd0c6 100644 --- a/cpukit/libnetworking/libc/res_mkquery.c +++ b/cpukit/libnetworking/libc/res_mkquery.c @@ -70,7 +70,7 @@ * SOFTWARE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/res_mkupdate.c b/cpukit/libnetworking/libc/res_mkupdate.c index 46e001c550..664788d2f4 100644 --- a/cpukit/libnetworking/libc/res_mkupdate.c +++ b/cpukit/libnetworking/libc/res_mkupdate.c @@ -22,7 +22,7 @@ * <viraj_bais@ccm.fm.intel.com> */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/res_query.c b/cpukit/libnetworking/libc/res_query.c index a2b3713e29..706c0ef628 100644 --- a/cpukit/libnetworking/libc/res_query.c +++ b/cpukit/libnetworking/libc/res_query.c @@ -70,7 +70,7 @@ * SOFTWARE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/res_send.c b/cpukit/libnetworking/libc/res_send.c index bbe1642c6a..1ae1b384a4 100644 --- a/cpukit/libnetworking/libc/res_send.c +++ b/cpukit/libnetworking/libc/res_send.c @@ -70,7 +70,7 @@ * SOFTWARE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/res_stubs.c b/cpukit/libnetworking/libc/res_stubs.c index 0b0f26ca76..19966b536b 100644 --- a/cpukit/libnetworking/libc/res_stubs.c +++ b/cpukit/libnetworking/libc/res_stubs.c @@ -38,7 +38,7 @@ * turned up all over the place. :-( */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/res_update.c b/cpukit/libnetworking/libc/res_update.c index 0c02330e9c..54a3af7607 100644 --- a/cpukit/libnetworking/libc/res_update.c +++ b/cpukit/libnetworking/libc/res_update.c @@ -17,7 +17,7 @@ * SOFTWARE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/libc/send.c b/cpukit/libnetworking/libc/send.c index ce793e3307..4aba73a500 100644 --- a/cpukit/libnetworking/libc/send.c +++ b/cpukit/libnetworking/libc/send.c @@ -33,7 +33,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/mkrootfs.c b/cpukit/libnetworking/rtems/mkrootfs.c index 66d79750b7..9414eaeb14 100644 --- a/cpukit/libnetworking/rtems/mkrootfs.c +++ b/cpukit/libnetworking/rtems/mkrootfs.c @@ -25,7 +25,7 @@ */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_bootp.c b/cpukit/libnetworking/rtems/rtems_bootp.c index 8446d6ade9..134ae90cfd 100644 --- a/cpukit/libnetworking/rtems/rtems_bootp.c +++ b/cpukit/libnetworking/rtems/rtems_bootp.c @@ -1,6 +1,6 @@ #include <machine/rtems-bsd-kernel-space.h> -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_bsdnet_malloc_starvation.c b/cpukit/libnetworking/rtems/rtems_bsdnet_malloc_starvation.c index 1744f714f6..c5ccd8c3c2 100644 --- a/cpukit/libnetworking/rtems/rtems_bsdnet_malloc_starvation.c +++ b/cpukit/libnetworking/rtems/rtems_bsdnet_malloc_starvation.c @@ -5,7 +5,7 @@ * by a BSP. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_dhcp.c b/cpukit/libnetworking/rtems/rtems_dhcp.c index 6d7a1cb892..6a153a4a40 100644 --- a/cpukit/libnetworking/rtems/rtems_dhcp.c +++ b/cpukit/libnetworking/rtems/rtems_dhcp.c @@ -58,7 +58,7 @@ #include <machine/rtems-bsd-kernel-space.h> -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_glue.c b/cpukit/libnetworking/rtems/rtems_glue.c index 13b16c9113..ee6c8f57a8 100644 --- a/cpukit/libnetworking/rtems/rtems_glue.c +++ b/cpukit/libnetworking/rtems/rtems_glue.c @@ -1,6 +1,6 @@ #include <machine/rtems-bsd-kernel-space.h> -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_malloc_mbuf.c b/cpukit/libnetworking/rtems/rtems_malloc_mbuf.c index 99b9dbae30..a12e3298bf 100644 --- a/cpukit/libnetworking/rtems/rtems_malloc_mbuf.c +++ b/cpukit/libnetworking/rtems/rtems_malloc_mbuf.c @@ -1,6 +1,6 @@ #include <machine/rtems-bsd-kernel-space.h> -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_select.c b/cpukit/libnetworking/rtems/rtems_select.c index 309aa020da..0b58b6af83 100644 --- a/cpukit/libnetworking/rtems/rtems_select.c +++ b/cpukit/libnetworking/rtems/rtems_select.c @@ -1,6 +1,6 @@ #include <machine/rtems-bsd-kernel-space.h> -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_showicmpstat.c b/cpukit/libnetworking/rtems/rtems_showicmpstat.c index 1e44fcf73a..4862d6cc54 100644 --- a/cpukit/libnetworking/rtems/rtems_showicmpstat.c +++ b/cpukit/libnetworking/rtems/rtems_showicmpstat.c @@ -1,6 +1,6 @@ #include <machine/rtems-bsd-kernel-space.h> -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_showifstat.c b/cpukit/libnetworking/rtems/rtems_showifstat.c index cbab561001..21f21f471a 100644 --- a/cpukit/libnetworking/rtems/rtems_showifstat.c +++ b/cpukit/libnetworking/rtems/rtems_showifstat.c @@ -1,6 +1,6 @@ #include <machine/rtems-bsd-kernel-space.h> -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_showipstat.c b/cpukit/libnetworking/rtems/rtems_showipstat.c index 01a89bace6..5b30da5179 100644 --- a/cpukit/libnetworking/rtems/rtems_showipstat.c +++ b/cpukit/libnetworking/rtems/rtems_showipstat.c @@ -1,6 +1,6 @@ #include <machine/rtems-bsd-kernel-space.h> -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_showmbuf.c b/cpukit/libnetworking/rtems/rtems_showmbuf.c index 247b1b1473..27f8cff003 100644 --- a/cpukit/libnetworking/rtems/rtems_showmbuf.c +++ b/cpukit/libnetworking/rtems/rtems_showmbuf.c @@ -1,6 +1,6 @@ #include <machine/rtems-bsd-kernel-space.h> -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_showroute.c b/cpukit/libnetworking/rtems/rtems_showroute.c index 952bb7ee73..971c3649aa 100644 --- a/cpukit/libnetworking/rtems/rtems_showroute.c +++ b/cpukit/libnetworking/rtems/rtems_showroute.c @@ -1,6 +1,6 @@ #include <machine/rtems-bsd-kernel-space.h> -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_showtcpstat.c b/cpukit/libnetworking/rtems/rtems_showtcpstat.c index d4b4a98fb3..3a178095fe 100644 --- a/cpukit/libnetworking/rtems/rtems_showtcpstat.c +++ b/cpukit/libnetworking/rtems/rtems_showtcpstat.c @@ -1,6 +1,6 @@ #include <machine/rtems-bsd-kernel-space.h> -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_showudpstat.c b/cpukit/libnetworking/rtems/rtems_showudpstat.c index 1e3f294a48..c6b4560494 100644 --- a/cpukit/libnetworking/rtems/rtems_showudpstat.c +++ b/cpukit/libnetworking/rtems/rtems_showudpstat.c @@ -1,6 +1,6 @@ #include <machine/rtems-bsd-kernel-space.h> -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_socketpair.c b/cpukit/libnetworking/rtems/rtems_socketpair.c index 0a0ad2eadb..1dcaf6e089 100644 --- a/cpukit/libnetworking/rtems/rtems_socketpair.c +++ b/cpukit/libnetworking/rtems/rtems_socketpair.c @@ -24,7 +24,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_syscall.c b/cpukit/libnetworking/rtems/rtems_syscall.c index 56a8530564..7f3143b4c2 100644 --- a/cpukit/libnetworking/rtems/rtems_syscall.c +++ b/cpukit/libnetworking/rtems/rtems_syscall.c @@ -1,6 +1,6 @@ #include <machine/rtems-bsd-kernel-space.h> -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/rtems_syscall_api.c b/cpukit/libnetworking/rtems/rtems_syscall_api.c index 7315a6c0f1..6899eba6ad 100644 --- a/cpukit/libnetworking/rtems/rtems_syscall_api.c +++ b/cpukit/libnetworking/rtems/rtems_syscall_api.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libnetworking/rtems/sghostname.c b/cpukit/libnetworking/rtems/sghostname.c index 9c756bcc31..df7513df4f 100644 --- a/cpukit/libnetworking/rtems/sghostname.c +++ b/cpukit/libnetworking/rtems/sghostname.c @@ -5,7 +5,7 @@ * FIXME: Not thread-safe */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libtest/testbeginend.c b/cpukit/libtest/testbeginend.c index c2088ae60b..4a85673a91 100644 --- a/cpukit/libtest/testbeginend.c +++ b/cpukit/libtest/testbeginend.c @@ -15,7 +15,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include <rtems/test.h> diff --git a/cpukit/libtest/testextension.c b/cpukit/libtest/testextension.c index be4759742e..56d97da3fb 100644 --- a/cpukit/libtest/testextension.c +++ b/cpukit/libtest/testextension.c @@ -13,7 +13,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include <rtems/test.h> diff --git a/cpukit/libtest/testparallel.c b/cpukit/libtest/testparallel.c index 4ff26650f5..3982dce034 100644 --- a/cpukit/libtest/testparallel.c +++ b/cpukit/libtest/testparallel.c @@ -14,7 +14,7 @@ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include <rtems/test.h> diff --git a/cpukit/libtest/testwrappers.c b/cpukit/libtest/testwrappers.c index c86c4cc3f8..782beb9863 100644 --- a/cpukit/libtest/testwrappers.c +++ b/cpukit/libtest/testwrappers.c @@ -7,7 +7,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include <rtems/test.h> diff --git a/cpukit/libtrace/record/record-client.c b/cpukit/libtrace/record/record-client.c index e1365fed6f..5a68115261 100644 --- a/cpukit/libtrace/record/record-client.c +++ b/cpukit/libtrace/record/record-client.c @@ -30,7 +30,7 @@ * FreeBSD. It may be used for utility programs. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libtrace/record/record-dump-base64.c b/cpukit/libtrace/record/record-dump-base64.c index 618a00414e..749300e961 100644 --- a/cpukit/libtrace/record/record-dump-base64.c +++ b/cpukit/libtrace/record/record-dump-base64.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libtrace/record/record-dump-fatal.c b/cpukit/libtrace/record/record-dump-fatal.c index e50913cb7d..7c37fb7a87 100644 --- a/cpukit/libtrace/record/record-dump-fatal.c +++ b/cpukit/libtrace/record/record-dump-fatal.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libtrace/record/record-dump-zbase64.c b/cpukit/libtrace/record/record-dump-zbase64.c index 08b4d92c53..5175bfab48 100644 --- a/cpukit/libtrace/record/record-dump-zbase64.c +++ b/cpukit/libtrace/record/record-dump-zbase64.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libtrace/record/record-dump-zfatal.c b/cpukit/libtrace/record/record-dump-zfatal.c index 8002e7a8f6..c5cb358323 100644 --- a/cpukit/libtrace/record/record-dump-zfatal.c +++ b/cpukit/libtrace/record/record-dump-zfatal.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libtrace/record/record-dump.c b/cpukit/libtrace/record/record-dump.c index b3c757226a..68bf092b52 100644 --- a/cpukit/libtrace/record/record-dump.c +++ b/cpukit/libtrace/record/record-dump.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libtrace/record/record-server.c b/cpukit/libtrace/record/record-server.c index 5e52651bd4..25e573750c 100644 --- a/cpukit/libtrace/record/record-server.c +++ b/cpukit/libtrace/record/record-server.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libtrace/record/record-sysinit.c b/cpukit/libtrace/record/record-sysinit.c index cd503acb06..4ffb3c6e2e 100644 --- a/cpukit/libtrace/record/record-sysinit.c +++ b/cpukit/libtrace/record/record-sysinit.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libtrace/record/record-text.c b/cpukit/libtrace/record/record-text.c index 7bdc2a6666..d786046b9e 100644 --- a/cpukit/libtrace/record/record-text.c +++ b/cpukit/libtrace/record/record-text.c @@ -30,7 +30,7 @@ * FreeBSD. It may be used for utility programs. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libtrace/record/record-userext.c b/cpukit/libtrace/record/record-userext.c index bac915843f..553455bfb7 100644 --- a/cpukit/libtrace/record/record-userext.c +++ b/cpukit/libtrace/record/record-userext.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libtrace/record/record-util.c b/cpukit/libtrace/record/record-util.c index 8fa542b9b4..670bb1a7e0 100644 --- a/cpukit/libtrace/record/record-util.c +++ b/cpukit/libtrace/record/record-util.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/libtrace/record/record.c b/cpukit/libtrace/record/record.c index 680e362661..7fb0feac63 100644 --- a/cpukit/libtrace/record/record.c +++ b/cpukit/libtrace/record/record.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/mghttpd/mongoose.c b/cpukit/mghttpd/mongoose.c index 52bc4d3c1a..fb2bce7471 100644 --- a/cpukit/mghttpd/mongoose.c +++ b/cpukit/mghttpd/mongoose.c @@ -18,7 +18,7 @@ // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/_execve.c b/cpukit/posix/src/_execve.c index df3a28c3e0..f719566dfa 100644 --- a/cpukit/posix/src/_execve.c +++ b/cpukit/posix/src/_execve.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/adjtime.c b/cpukit/posix/src/adjtime.c index 5cdfd13352..ab61693f19 100644 --- a/cpukit/posix/src/adjtime.c +++ b/cpukit/posix/src/adjtime.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/aio_cancel.c b/cpukit/posix/src/aio_cancel.c index 2b6a2125d6..58d7a385e6 100644 --- a/cpukit/posix/src/aio_cancel.c +++ b/cpukit/posix/src/aio_cancel.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/aio_error.c b/cpukit/posix/src/aio_error.c index 4c30a8ba9c..bd41415af1 100644 --- a/cpukit/posix/src/aio_error.c +++ b/cpukit/posix/src/aio_error.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/aio_fsync.c b/cpukit/posix/src/aio_fsync.c index 62f516ba77..212668dbb3 100644 --- a/cpukit/posix/src/aio_fsync.c +++ b/cpukit/posix/src/aio_fsync.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/aio_read.c b/cpukit/posix/src/aio_read.c index a52cbdea01..014658c2c6 100644 --- a/cpukit/posix/src/aio_read.c +++ b/cpukit/posix/src/aio_read.c @@ -14,7 +14,7 @@ */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/aio_return.c b/cpukit/posix/src/aio_return.c index 9e733284b5..307d384263 100644 --- a/cpukit/posix/src/aio_return.c +++ b/cpukit/posix/src/aio_return.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/aio_suspend.c b/cpukit/posix/src/aio_suspend.c index 9739bac442..1fdec47291 100644 --- a/cpukit/posix/src/aio_suspend.c +++ b/cpukit/posix/src/aio_suspend.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/aio_write.c b/cpukit/posix/src/aio_write.c index 8e873a9ec2..db71c956a3 100644 --- a/cpukit/posix/src/aio_write.c +++ b/cpukit/posix/src/aio_write.c @@ -14,7 +14,7 @@ */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/alarm.c b/cpukit/posix/src/alarm.c index bbfc96d31d..49bdb573f5 100644 --- a/cpukit/posix/src/alarm.c +++ b/cpukit/posix/src/alarm.c @@ -17,7 +17,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/barrierattrdestroy.c b/cpukit/posix/src/barrierattrdestroy.c index 8d27a10b86..f36d2fce31 100644 --- a/cpukit/posix/src/barrierattrdestroy.c +++ b/cpukit/posix/src/barrierattrdestroy.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/barrierattrgetpshared.c b/cpukit/posix/src/barrierattrgetpshared.c index 1a3a86b401..5f346fe4d0 100644 --- a/cpukit/posix/src/barrierattrgetpshared.c +++ b/cpukit/posix/src/barrierattrgetpshared.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/barrierattrinit.c b/cpukit/posix/src/barrierattrinit.c index 5ee33436a2..9d8eda3432 100644 --- a/cpukit/posix/src/barrierattrinit.c +++ b/cpukit/posix/src/barrierattrinit.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/barrierattrsetpshared.c b/cpukit/posix/src/barrierattrsetpshared.c index b22ba52fd4..c3c94f3c47 100644 --- a/cpukit/posix/src/barrierattrsetpshared.c +++ b/cpukit/posix/src/barrierattrsetpshared.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/cancel.c b/cpukit/posix/src/cancel.c index 04088ae201..8c00f716cd 100644 --- a/cpukit/posix/src/cancel.c +++ b/cpukit/posix/src/cancel.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/cleanuppush.c b/cpukit/posix/src/cleanuppush.c index d3d7c8fe43..25e4dcc1e9 100644 --- a/cpukit/posix/src/cleanuppush.c +++ b/cpukit/posix/src/cleanuppush.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/clockgetcpuclockid.c b/cpukit/posix/src/clockgetcpuclockid.c index 54f10baef6..a3172b6c25 100644 --- a/cpukit/posix/src/clockgetcpuclockid.c +++ b/cpukit/posix/src/clockgetcpuclockid.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/clockgetres.c b/cpukit/posix/src/clockgetres.c index 6b1b259934..04b99e0595 100644 --- a/cpukit/posix/src/clockgetres.c +++ b/cpukit/posix/src/clockgetres.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/clockgettime.c b/cpukit/posix/src/clockgettime.c index 0e28206a4e..a885a838b8 100644 --- a/cpukit/posix/src/clockgettime.c +++ b/cpukit/posix/src/clockgettime.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/clocksettime.c b/cpukit/posix/src/clocksettime.c index 49e4761875..8052ac0a9f 100644 --- a/cpukit/posix/src/clocksettime.c +++ b/cpukit/posix/src/clocksettime.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/condattrdestroy.c b/cpukit/posix/src/condattrdestroy.c index 9629507753..31e8e5953c 100644 --- a/cpukit/posix/src/condattrdestroy.c +++ b/cpukit/posix/src/condattrdestroy.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/condattrgetclock.c b/cpukit/posix/src/condattrgetclock.c index 4ff455d1f3..29c7665222 100644 --- a/cpukit/posix/src/condattrgetclock.c +++ b/cpukit/posix/src/condattrgetclock.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/condattrgetpshared.c b/cpukit/posix/src/condattrgetpshared.c index d80af6eb97..051a59577a 100644 --- a/cpukit/posix/src/condattrgetpshared.c +++ b/cpukit/posix/src/condattrgetpshared.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/condattrinit.c b/cpukit/posix/src/condattrinit.c index 15b03c9d63..f2ab9b8772 100644 --- a/cpukit/posix/src/condattrinit.c +++ b/cpukit/posix/src/condattrinit.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/condattrsetclock.c b/cpukit/posix/src/condattrsetclock.c index 1b47b97464..a272d34e66 100644 --- a/cpukit/posix/src/condattrsetclock.c +++ b/cpukit/posix/src/condattrsetclock.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/condattrsetpshared.c b/cpukit/posix/src/condattrsetpshared.c index 3128ad7bd7..5228b45a4e 100644 --- a/cpukit/posix/src/condattrsetpshared.c +++ b/cpukit/posix/src/condattrsetpshared.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/condbroadcast.c b/cpukit/posix/src/condbroadcast.c index 3a19d7ebb7..5bd9417465 100644 --- a/cpukit/posix/src/condbroadcast.c +++ b/cpukit/posix/src/condbroadcast.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/conddefaultattributes.c b/cpukit/posix/src/conddefaultattributes.c index 1aff37bd03..409dd08aac 100644 --- a/cpukit/posix/src/conddefaultattributes.c +++ b/cpukit/posix/src/conddefaultattributes.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/conddestroy.c b/cpukit/posix/src/conddestroy.c index 63214362dc..ba81a23275 100644 --- a/cpukit/posix/src/conddestroy.c +++ b/cpukit/posix/src/conddestroy.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/condinit.c b/cpukit/posix/src/condinit.c index aab26aa9f7..90c4504be6 100644 --- a/cpukit/posix/src/condinit.c +++ b/cpukit/posix/src/condinit.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/condsignal.c b/cpukit/posix/src/condsignal.c index 6f826c26b9..3040874a11 100644 --- a/cpukit/posix/src/condsignal.c +++ b/cpukit/posix/src/condsignal.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/condsignalsupp.c b/cpukit/posix/src/condsignalsupp.c index 1d9d4fc1ad..eabba064c6 100644 --- a/cpukit/posix/src/condsignalsupp.c +++ b/cpukit/posix/src/condsignalsupp.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/condtimedwait.c b/cpukit/posix/src/condtimedwait.c index 1b338c8ae6..290a9d5161 100644 --- a/cpukit/posix/src/condtimedwait.c +++ b/cpukit/posix/src/condtimedwait.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/condwait.c b/cpukit/posix/src/condwait.c index 9527077757..bbebfe544d 100644 --- a/cpukit/posix/src/condwait.c +++ b/cpukit/posix/src/condwait.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/condwaitsupp.c b/cpukit/posix/src/condwaitsupp.c index 32c1eab629..b759ee54b8 100644 --- a/cpukit/posix/src/condwaitsupp.c +++ b/cpukit/posix/src/condwaitsupp.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/fork.c b/cpukit/posix/src/fork.c index 31e8519920..57e96937ca 100644 --- a/cpukit/posix/src/fork.c +++ b/cpukit/posix/src/fork.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/getitimer.c b/cpukit/posix/src/getitimer.c index 6aa2c53598..35e940bff9 100644 --- a/cpukit/posix/src/getitimer.c +++ b/cpukit/posix/src/getitimer.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/key.c b/cpukit/posix/src/key.c index 0309a26da5..971dc7b60b 100644 --- a/cpukit/posix/src/key.c +++ b/cpukit/posix/src/key.c @@ -33,7 +33,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/keycreate.c b/cpukit/posix/src/keycreate.c index b4f1c87335..f018133c1f 100644 --- a/cpukit/posix/src/keycreate.c +++ b/cpukit/posix/src/keycreate.c @@ -15,7 +15,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/keydelete.c b/cpukit/posix/src/keydelete.c index 149f3f245e..69b8559a83 100644 --- a/cpukit/posix/src/keydelete.c +++ b/cpukit/posix/src/keydelete.c @@ -15,7 +15,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/keygetspecific.c b/cpukit/posix/src/keygetspecific.c index ae29955d80..5f1188d4b5 100644 --- a/cpukit/posix/src/keygetspecific.c +++ b/cpukit/posix/src/keygetspecific.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/keysetspecific.c b/cpukit/posix/src/keysetspecific.c index 391dc85b2d..5be2f8dd07 100644 --- a/cpukit/posix/src/keysetspecific.c +++ b/cpukit/posix/src/keysetspecific.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/keyzerokvp.c b/cpukit/posix/src/keyzerokvp.c index 0419678821..8fe5898eb4 100644 --- a/cpukit/posix/src/keyzerokvp.c +++ b/cpukit/posix/src/keyzerokvp.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/kill.c b/cpukit/posix/src/kill.c index cc54c2203e..a143c5dea3 100644 --- a/cpukit/posix/src/kill.c +++ b/cpukit/posix/src/kill.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/kill_r.c b/cpukit/posix/src/kill_r.c index 532e31ca9e..2262c733b2 100644 --- a/cpukit/posix/src/kill_r.c +++ b/cpukit/posix/src/kill_r.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/killinfo.c b/cpukit/posix/src/killinfo.c index 742f9fb2c1..b815d79bcd 100644 --- a/cpukit/posix/src/killinfo.c +++ b/cpukit/posix/src/killinfo.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/lio_listio.c b/cpukit/posix/src/lio_listio.c index bcbfb7dfe0..26f0d9831d 100644 --- a/cpukit/posix/src/lio_listio.c +++ b/cpukit/posix/src/lio_listio.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mlock.c b/cpukit/posix/src/mlock.c index 4f7d3c0786..6f1f2c5942 100644 --- a/cpukit/posix/src/mlock.c +++ b/cpukit/posix/src/mlock.c @@ -10,7 +10,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mlockall.c b/cpukit/posix/src/mlockall.c index 1fd4ed5fa2..a80dd65945 100644 --- a/cpukit/posix/src/mlockall.c +++ b/cpukit/posix/src/mlockall.c @@ -10,7 +10,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mmap.c b/cpukit/posix/src/mmap.c index de7d5b22a1..176c6e4fe8 100644 --- a/cpukit/posix/src/mmap.c +++ b/cpukit/posix/src/mmap.c @@ -12,7 +12,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mprotect.c b/cpukit/posix/src/mprotect.c index 76647c2700..17a63b47ce 100644 --- a/cpukit/posix/src/mprotect.c +++ b/cpukit/posix/src/mprotect.c @@ -23,7 +23,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueue.c b/cpukit/posix/src/mqueue.c index 21c5feb8be..9cdef7596c 100644 --- a/cpukit/posix/src/mqueue.c +++ b/cpukit/posix/src/mqueue.c @@ -33,7 +33,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueueclose.c b/cpukit/posix/src/mqueueclose.c index 60d3ce3ea9..a9cadb4a0b 100644 --- a/cpukit/posix/src/mqueueclose.c +++ b/cpukit/posix/src/mqueueclose.c @@ -26,7 +26,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueueconfig.c b/cpukit/posix/src/mqueueconfig.c index 921fb73772..c4109a716d 100644 --- a/cpukit/posix/src/mqueueconfig.c +++ b/cpukit/posix/src/mqueueconfig.c @@ -25,7 +25,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueuedeletesupp.c b/cpukit/posix/src/mqueuedeletesupp.c index 850707a0d9..21f16760e7 100644 --- a/cpukit/posix/src/mqueuedeletesupp.c +++ b/cpukit/posix/src/mqueuedeletesupp.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueuegetattr.c b/cpukit/posix/src/mqueuegetattr.c index 5efcc0b154..20ade1107c 100644 --- a/cpukit/posix/src/mqueuegetattr.c +++ b/cpukit/posix/src/mqueuegetattr.c @@ -26,7 +26,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueuenotify.c b/cpukit/posix/src/mqueuenotify.c index a1f9a089f8..e8113e7018 100644 --- a/cpukit/posix/src/mqueuenotify.c +++ b/cpukit/posix/src/mqueuenotify.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueueopen.c b/cpukit/posix/src/mqueueopen.c index 4bb8025e65..821563f9c3 100644 --- a/cpukit/posix/src/mqueueopen.c +++ b/cpukit/posix/src/mqueueopen.c @@ -26,7 +26,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueuereceive.c b/cpukit/posix/src/mqueuereceive.c index c160634dc5..b4b1331560 100644 --- a/cpukit/posix/src/mqueuereceive.c +++ b/cpukit/posix/src/mqueuereceive.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueuerecvsupp.c b/cpukit/posix/src/mqueuerecvsupp.c index 062bd50dbf..32d7909c51 100644 --- a/cpukit/posix/src/mqueuerecvsupp.c +++ b/cpukit/posix/src/mqueuerecvsupp.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueuesend.c b/cpukit/posix/src/mqueuesend.c index dfb4bcffea..d7afdbdb91 100644 --- a/cpukit/posix/src/mqueuesend.c +++ b/cpukit/posix/src/mqueuesend.c @@ -26,7 +26,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueuesendsupp.c b/cpukit/posix/src/mqueuesendsupp.c index a238991af5..8edc29de37 100644 --- a/cpukit/posix/src/mqueuesendsupp.c +++ b/cpukit/posix/src/mqueuesendsupp.c @@ -26,7 +26,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueuesetattr.c b/cpukit/posix/src/mqueuesetattr.c index fc9fc75ecf..c8eafe7a0f 100644 --- a/cpukit/posix/src/mqueuesetattr.c +++ b/cpukit/posix/src/mqueuesetattr.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueuetimedreceive.c b/cpukit/posix/src/mqueuetimedreceive.c index fe9fc75053..a9fe5b5317 100644 --- a/cpukit/posix/src/mqueuetimedreceive.c +++ b/cpukit/posix/src/mqueuetimedreceive.c @@ -28,7 +28,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueuetimedsend.c b/cpukit/posix/src/mqueuetimedsend.c index 5596517c78..2ac9d35ff2 100644 --- a/cpukit/posix/src/mqueuetimedsend.c +++ b/cpukit/posix/src/mqueuetimedsend.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mqueueunlink.c b/cpukit/posix/src/mqueueunlink.c index 812f249df5..c9737d57e6 100644 --- a/cpukit/posix/src/mqueueunlink.c +++ b/cpukit/posix/src/mqueueunlink.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/msync.c b/cpukit/posix/src/msync.c index fa84083c90..163a433ce7 100644 --- a/cpukit/posix/src/msync.c +++ b/cpukit/posix/src/msync.c @@ -10,7 +10,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/munlock.c b/cpukit/posix/src/munlock.c index 7a4b104de0..af9252b456 100644 --- a/cpukit/posix/src/munlock.c +++ b/cpukit/posix/src/munlock.c @@ -10,7 +10,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/munlockall.c b/cpukit/posix/src/munlockall.c index c24cfc9cd3..0f4fc7bc76 100644 --- a/cpukit/posix/src/munlockall.c +++ b/cpukit/posix/src/munlockall.c @@ -10,7 +10,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/munmap.c b/cpukit/posix/src/munmap.c index 5348be7a51..7c967c3f94 100644 --- a/cpukit/posix/src/munmap.c +++ b/cpukit/posix/src/munmap.c @@ -7,7 +7,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexattrdestroy.c b/cpukit/posix/src/mutexattrdestroy.c index 2b63fe2185..1b78245b42 100644 --- a/cpukit/posix/src/mutexattrdestroy.c +++ b/cpukit/posix/src/mutexattrdestroy.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexattrgetprioceiling.c b/cpukit/posix/src/mutexattrgetprioceiling.c index 928347ed5e..f0da17c223 100644 --- a/cpukit/posix/src/mutexattrgetprioceiling.c +++ b/cpukit/posix/src/mutexattrgetprioceiling.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexattrgetprotocol.c b/cpukit/posix/src/mutexattrgetprotocol.c index 0b77e393b7..b4b30231b4 100644 --- a/cpukit/posix/src/mutexattrgetprotocol.c +++ b/cpukit/posix/src/mutexattrgetprotocol.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexattrgetpshared.c b/cpukit/posix/src/mutexattrgetpshared.c index 5f8efb7775..94547ad2b2 100644 --- a/cpukit/posix/src/mutexattrgetpshared.c +++ b/cpukit/posix/src/mutexattrgetpshared.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexattrgettype.c b/cpukit/posix/src/mutexattrgettype.c index 61b6d587ef..c903099bee 100644 --- a/cpukit/posix/src/mutexattrgettype.c +++ b/cpukit/posix/src/mutexattrgettype.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexattrinit.c b/cpukit/posix/src/mutexattrinit.c index fea765dcf3..dd94f82c8f 100644 --- a/cpukit/posix/src/mutexattrinit.c +++ b/cpukit/posix/src/mutexattrinit.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexattrsetprioceiling.c b/cpukit/posix/src/mutexattrsetprioceiling.c index 3411121ad1..b449215b66 100644 --- a/cpukit/posix/src/mutexattrsetprioceiling.c +++ b/cpukit/posix/src/mutexattrsetprioceiling.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexattrsetprotocol.c b/cpukit/posix/src/mutexattrsetprotocol.c index 0b272390dc..7ac28946c5 100644 --- a/cpukit/posix/src/mutexattrsetprotocol.c +++ b/cpukit/posix/src/mutexattrsetprotocol.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexattrsetpshared.c b/cpukit/posix/src/mutexattrsetpshared.c index 412cbe48e0..d3efe2f481 100644 --- a/cpukit/posix/src/mutexattrsetpshared.c +++ b/cpukit/posix/src/mutexattrsetpshared.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexattrsettype.c b/cpukit/posix/src/mutexattrsettype.c index a31a848ad5..7c5e591d89 100644 --- a/cpukit/posix/src/mutexattrsettype.c +++ b/cpukit/posix/src/mutexattrsettype.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexdestroy.c b/cpukit/posix/src/mutexdestroy.c index 193f3391bc..15d8aac447 100644 --- a/cpukit/posix/src/mutexdestroy.c +++ b/cpukit/posix/src/mutexdestroy.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexgetprioceiling.c b/cpukit/posix/src/mutexgetprioceiling.c index 3ac90d888e..41e6f1b8ea 100644 --- a/cpukit/posix/src/mutexgetprioceiling.c +++ b/cpukit/posix/src/mutexgetprioceiling.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexinit.c b/cpukit/posix/src/mutexinit.c index 45688eec1a..07828f262d 100644 --- a/cpukit/posix/src/mutexinit.c +++ b/cpukit/posix/src/mutexinit.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexlock.c b/cpukit/posix/src/mutexlock.c index 35722fe96f..4efc8ac214 100644 --- a/cpukit/posix/src/mutexlock.c +++ b/cpukit/posix/src/mutexlock.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexlocksupp.c b/cpukit/posix/src/mutexlocksupp.c index 4530a6bea2..1cfc733cf9 100644 --- a/cpukit/posix/src/mutexlocksupp.c +++ b/cpukit/posix/src/mutexlocksupp.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexsetprioceiling.c b/cpukit/posix/src/mutexsetprioceiling.c index 87d9ba46f3..d78142283e 100644 --- a/cpukit/posix/src/mutexsetprioceiling.c +++ b/cpukit/posix/src/mutexsetprioceiling.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutextimedlock.c b/cpukit/posix/src/mutextimedlock.c index 075417a3dd..6ec813cb35 100644 --- a/cpukit/posix/src/mutextimedlock.c +++ b/cpukit/posix/src/mutextimedlock.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutextrylock.c b/cpukit/posix/src/mutextrylock.c index 895f38fa44..af7903cb19 100644 --- a/cpukit/posix/src/mutextrylock.c +++ b/cpukit/posix/src/mutextrylock.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/mutexunlock.c b/cpukit/posix/src/mutexunlock.c index ead3109812..1b00800bf4 100644 --- a/cpukit/posix/src/mutexunlock.c +++ b/cpukit/posix/src/mutexunlock.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/nanosleep.c b/cpukit/posix/src/nanosleep.c index 7613df92d1..afcc29051f 100644 --- a/cpukit/posix/src/nanosleep.c +++ b/cpukit/posix/src/nanosleep.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pause.c b/cpukit/posix/src/pause.c index 9f69721cac..e2fb9d9f15 100644 --- a/cpukit/posix/src/pause.c +++ b/cpukit/posix/src/pause.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pbarrierdestroy.c b/cpukit/posix/src/pbarrierdestroy.c index 83d06318b5..90e59d6bea 100644 --- a/cpukit/posix/src/pbarrierdestroy.c +++ b/cpukit/posix/src/pbarrierdestroy.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pbarrierinit.c b/cpukit/posix/src/pbarrierinit.c index 1fa22cb024..abe4224374 100644 --- a/cpukit/posix/src/pbarrierinit.c +++ b/cpukit/posix/src/pbarrierinit.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pbarrierwait.c b/cpukit/posix/src/pbarrierwait.c index 75d9437774..865ccfe3f7 100644 --- a/cpukit/posix/src/pbarrierwait.c +++ b/cpukit/posix/src/pbarrierwait.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/posix_madvise.c b/cpukit/posix/src/posix_madvise.c index b909a1c84b..91740b1376 100644 --- a/cpukit/posix/src/posix_madvise.c +++ b/cpukit/posix/src/posix_madvise.c @@ -10,7 +10,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/prwlockdestroy.c b/cpukit/posix/src/prwlockdestroy.c index 49fd630ecd..96dd0681a8 100644 --- a/cpukit/posix/src/prwlockdestroy.c +++ b/cpukit/posix/src/prwlockdestroy.c @@ -13,7 +13,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/prwlockinit.c b/cpukit/posix/src/prwlockinit.c index a5e2ba1f54..0bd5991b0a 100644 --- a/cpukit/posix/src/prwlockinit.c +++ b/cpukit/posix/src/prwlockinit.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/prwlockrdlock.c b/cpukit/posix/src/prwlockrdlock.c index 38c2981076..f0bc9c2e85 100644 --- a/cpukit/posix/src/prwlockrdlock.c +++ b/cpukit/posix/src/prwlockrdlock.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/prwlocktimedrdlock.c b/cpukit/posix/src/prwlocktimedrdlock.c index 47c76d9136..1ccf534269 100644 --- a/cpukit/posix/src/prwlocktimedrdlock.c +++ b/cpukit/posix/src/prwlocktimedrdlock.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/prwlocktimedwrlock.c b/cpukit/posix/src/prwlocktimedwrlock.c index a48f0e665c..01ce758d1c 100644 --- a/cpukit/posix/src/prwlocktimedwrlock.c +++ b/cpukit/posix/src/prwlocktimedwrlock.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/prwlocktryrdlock.c b/cpukit/posix/src/prwlocktryrdlock.c index e934d286ae..1bc523ae40 100644 --- a/cpukit/posix/src/prwlocktryrdlock.c +++ b/cpukit/posix/src/prwlocktryrdlock.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/prwlocktrywrlock.c b/cpukit/posix/src/prwlocktrywrlock.c index ccbeb3114b..a4525d7119 100644 --- a/cpukit/posix/src/prwlocktrywrlock.c +++ b/cpukit/posix/src/prwlocktrywrlock.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/prwlockunlock.c b/cpukit/posix/src/prwlockunlock.c index 2d34f5e393..6caa020d66 100644 --- a/cpukit/posix/src/prwlockunlock.c +++ b/cpukit/posix/src/prwlockunlock.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/prwlockwrlock.c b/cpukit/posix/src/prwlockwrlock.c index eae10ba375..438d1f1fc1 100644 --- a/cpukit/posix/src/prwlockwrlock.c +++ b/cpukit/posix/src/prwlockwrlock.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/psignal.c b/cpukit/posix/src/psignal.c index efc4bcc653..15d4c89a31 100644 --- a/cpukit/posix/src/psignal.c +++ b/cpukit/posix/src/psignal.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/psignalclearprocesssignals.c b/cpukit/posix/src/psignalclearprocesssignals.c index 2ec1bbe2a7..77dfc7f410 100644 --- a/cpukit/posix/src/psignalclearprocesssignals.c +++ b/cpukit/posix/src/psignalclearprocesssignals.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/psignalclearsignals.c b/cpukit/posix/src/psignalclearsignals.c index 7d678ca135..f231748944 100644 --- a/cpukit/posix/src/psignalclearsignals.c +++ b/cpukit/posix/src/psignalclearsignals.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/psignalconfig.c b/cpukit/posix/src/psignalconfig.c index 41d68eaee1..5422b8dec1 100644 --- a/cpukit/posix/src/psignalconfig.c +++ b/cpukit/posix/src/psignalconfig.c @@ -25,7 +25,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/psignalsetprocesssignals.c b/cpukit/posix/src/psignalsetprocesssignals.c index 1fbe778bad..00362641f2 100644 --- a/cpukit/posix/src/psignalsetprocesssignals.c +++ b/cpukit/posix/src/psignalsetprocesssignals.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/psignalunblockthread.c b/cpukit/posix/src/psignalunblockthread.c index 46f1942e02..d6666fb279 100644 --- a/cpukit/posix/src/psignalunblockthread.c +++ b/cpukit/posix/src/psignalunblockthread.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pspindestroy.c b/cpukit/posix/src/pspindestroy.c index 3963fe8da2..55fb406786 100644 --- a/cpukit/posix/src/pspindestroy.c +++ b/cpukit/posix/src/pspindestroy.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pspininit.c b/cpukit/posix/src/pspininit.c index 6a7bd03842..2e103cb53a 100644 --- a/cpukit/posix/src/pspininit.c +++ b/cpukit/posix/src/pspininit.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pspinlock.c b/cpukit/posix/src/pspinlock.c index f505768426..ad43b5a598 100644 --- a/cpukit/posix/src/pspinlock.c +++ b/cpukit/posix/src/pspinlock.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pspinunlock.c b/cpukit/posix/src/pspinunlock.c index bcbb2108ef..9af4a33b6b 100644 --- a/cpukit/posix/src/pspinunlock.c +++ b/cpukit/posix/src/pspinunlock.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/psxnametoid.c b/cpukit/posix/src/psxnametoid.c index eac8e84611..0ddb72a98e 100644 --- a/cpukit/posix/src/psxnametoid.c +++ b/cpukit/posix/src/psxnametoid.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/posix/posixapi.h> diff --git a/cpukit/posix/src/psxpriorityisvalid.c b/cpukit/posix/src/psxpriorityisvalid.c index 5e687aca15..ddd43d46ff 100644 --- a/cpukit/posix/src/psxpriorityisvalid.c +++ b/cpukit/posix/src/psxpriorityisvalid.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/psxsemaphore.c b/cpukit/posix/src/psxsemaphore.c index 952587a19f..d87139ac1f 100644 --- a/cpukit/posix/src/psxsemaphore.c +++ b/cpukit/posix/src/psxsemaphore.c @@ -33,7 +33,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/psxsemaphoreconfig.c b/cpukit/posix/src/psxsemaphoreconfig.c index 7e29742537..f0a92a6c16 100644 --- a/cpukit/posix/src/psxsemaphoreconfig.c +++ b/cpukit/posix/src/psxsemaphoreconfig.c @@ -25,7 +25,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/psxtimerconfig.c b/cpukit/posix/src/psxtimerconfig.c index 2781a8cec5..4c1f107282 100644 --- a/cpukit/posix/src/psxtimerconfig.c +++ b/cpukit/posix/src/psxtimerconfig.c @@ -25,7 +25,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/psxtimercreate.c b/cpukit/posix/src/psxtimercreate.c index ba5d066194..c2c89c283f 100644 --- a/cpukit/posix/src/psxtimercreate.c +++ b/cpukit/posix/src/psxtimercreate.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/psxtimerdelete.c b/cpukit/posix/src/psxtimerdelete.c index f84cba2ad1..c55697fcf1 100644 --- a/cpukit/posix/src/psxtimerdelete.c +++ b/cpukit/posix/src/psxtimerdelete.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/psxtransschedparam.c b/cpukit/posix/src/psxtransschedparam.c index 587788cabd..f3842457fa 100644 --- a/cpukit/posix/src/psxtransschedparam.c +++ b/cpukit/posix/src/psxtransschedparam.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthread.c b/cpukit/posix/src/pthread.c index ff76c8694e..7e861a3d6b 100644 --- a/cpukit/posix/src/pthread.c +++ b/cpukit/posix/src/pthread.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadatfork.c b/cpukit/posix/src/pthreadatfork.c index f3629c1392..9b1a0f1710 100644 --- a/cpukit/posix/src/pthreadatfork.c +++ b/cpukit/posix/src/pthreadatfork.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrdefault.c b/cpukit/posix/src/pthreadattrdefault.c index ca3c2c11d2..4b573d08fd 100644 --- a/cpukit/posix/src/pthreadattrdefault.c +++ b/cpukit/posix/src/pthreadattrdefault.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrdestroy.c b/cpukit/posix/src/pthreadattrdestroy.c index 7d30be9ed5..cb4837e9c9 100644 --- a/cpukit/posix/src/pthreadattrdestroy.c +++ b/cpukit/posix/src/pthreadattrdestroy.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrgetaffinitynp.c b/cpukit/posix/src/pthreadattrgetaffinitynp.c index 19acfa85aa..b0fae65348 100644 --- a/cpukit/posix/src/pthreadattrgetaffinitynp.c +++ b/cpukit/posix/src/pthreadattrgetaffinitynp.c @@ -16,7 +16,7 @@ #define _GNU_SOURCE -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrgetdetachstate.c b/cpukit/posix/src/pthreadattrgetdetachstate.c index 7ee5961ba9..18c214b996 100644 --- a/cpukit/posix/src/pthreadattrgetdetachstate.c +++ b/cpukit/posix/src/pthreadattrgetdetachstate.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrgetguardsize.c b/cpukit/posix/src/pthreadattrgetguardsize.c index 98ce1ca98e..a5e9a31011 100644 --- a/cpukit/posix/src/pthreadattrgetguardsize.c +++ b/cpukit/posix/src/pthreadattrgetguardsize.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrgetinheritsched.c b/cpukit/posix/src/pthreadattrgetinheritsched.c index bdf7f65b81..6be61defa6 100644 --- a/cpukit/posix/src/pthreadattrgetinheritsched.c +++ b/cpukit/posix/src/pthreadattrgetinheritsched.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrgetschedparam.c b/cpukit/posix/src/pthreadattrgetschedparam.c index 3f61df08a4..e1a1a79da1 100644 --- a/cpukit/posix/src/pthreadattrgetschedparam.c +++ b/cpukit/posix/src/pthreadattrgetschedparam.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrgetschedpolicy.c b/cpukit/posix/src/pthreadattrgetschedpolicy.c index 303fa6c74f..7003a6b7cd 100644 --- a/cpukit/posix/src/pthreadattrgetschedpolicy.c +++ b/cpukit/posix/src/pthreadattrgetschedpolicy.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrgetscope.c b/cpukit/posix/src/pthreadattrgetscope.c index ee1b576193..c7eff2361b 100644 --- a/cpukit/posix/src/pthreadattrgetscope.c +++ b/cpukit/posix/src/pthreadattrgetscope.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrgetstack.c b/cpukit/posix/src/pthreadattrgetstack.c index 72bd311e18..719a535915 100644 --- a/cpukit/posix/src/pthreadattrgetstack.c +++ b/cpukit/posix/src/pthreadattrgetstack.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrgetstackaddr.c b/cpukit/posix/src/pthreadattrgetstackaddr.c index 011daae429..9da944a72c 100644 --- a/cpukit/posix/src/pthreadattrgetstackaddr.c +++ b/cpukit/posix/src/pthreadattrgetstackaddr.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrgetstacksize.c b/cpukit/posix/src/pthreadattrgetstacksize.c index 6081873783..e939205fa2 100644 --- a/cpukit/posix/src/pthreadattrgetstacksize.c +++ b/cpukit/posix/src/pthreadattrgetstacksize.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrinit.c b/cpukit/posix/src/pthreadattrinit.c index d69cac497b..d0694eb7d7 100644 --- a/cpukit/posix/src/pthreadattrinit.c +++ b/cpukit/posix/src/pthreadattrinit.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrsetaffinitynp.c b/cpukit/posix/src/pthreadattrsetaffinitynp.c index a05b74e4de..30703fa663 100644 --- a/cpukit/posix/src/pthreadattrsetaffinitynp.c +++ b/cpukit/posix/src/pthreadattrsetaffinitynp.c @@ -16,7 +16,7 @@ #define _GNU_SOURCE -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrsetdetachstate.c b/cpukit/posix/src/pthreadattrsetdetachstate.c index b2e3af7f47..d6ca32eebb 100644 --- a/cpukit/posix/src/pthreadattrsetdetachstate.c +++ b/cpukit/posix/src/pthreadattrsetdetachstate.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrsetguardsize.c b/cpukit/posix/src/pthreadattrsetguardsize.c index 766066ce24..3e92fa5bc5 100644 --- a/cpukit/posix/src/pthreadattrsetguardsize.c +++ b/cpukit/posix/src/pthreadattrsetguardsize.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrsetinheritsched.c b/cpukit/posix/src/pthreadattrsetinheritsched.c index c3b8a53053..0cc11f2b13 100644 --- a/cpukit/posix/src/pthreadattrsetinheritsched.c +++ b/cpukit/posix/src/pthreadattrsetinheritsched.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrsetschedparam.c b/cpukit/posix/src/pthreadattrsetschedparam.c index 212f565786..c3e6b4a7f3 100644 --- a/cpukit/posix/src/pthreadattrsetschedparam.c +++ b/cpukit/posix/src/pthreadattrsetschedparam.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrsetschedpolicy.c b/cpukit/posix/src/pthreadattrsetschedpolicy.c index 235e7a8ad1..cd72164ef2 100644 --- a/cpukit/posix/src/pthreadattrsetschedpolicy.c +++ b/cpukit/posix/src/pthreadattrsetschedpolicy.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrsetscope.c b/cpukit/posix/src/pthreadattrsetscope.c index 1d8bec0467..bdbc64d0f1 100644 --- a/cpukit/posix/src/pthreadattrsetscope.c +++ b/cpukit/posix/src/pthreadattrsetscope.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrsetstack.c b/cpukit/posix/src/pthreadattrsetstack.c index b335274d92..b95d0484ea 100644 --- a/cpukit/posix/src/pthreadattrsetstack.c +++ b/cpukit/posix/src/pthreadattrsetstack.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrsetstackaddr.c b/cpukit/posix/src/pthreadattrsetstackaddr.c index d8ed8c8a4a..5221080e9b 100644 --- a/cpukit/posix/src/pthreadattrsetstackaddr.c +++ b/cpukit/posix/src/pthreadattrsetstackaddr.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadattrsetstacksize.c b/cpukit/posix/src/pthreadattrsetstacksize.c index b54531daae..2039da6d85 100644 --- a/cpukit/posix/src/pthreadattrsetstacksize.c +++ b/cpukit/posix/src/pthreadattrsetstacksize.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadconcurrency.c b/cpukit/posix/src/pthreadconcurrency.c index 7e9c9c0b18..be5d754a9e 100644 --- a/cpukit/posix/src/pthreadconcurrency.c +++ b/cpukit/posix/src/pthreadconcurrency.c @@ -1,4 +1,4 @@ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadconfig.c b/cpukit/posix/src/pthreadconfig.c index 75683c3c6e..26525139db 100644 --- a/cpukit/posix/src/pthreadconfig.c +++ b/cpukit/posix/src/pthreadconfig.c @@ -25,7 +25,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadcreate.c b/cpukit/posix/src/pthreadcreate.c index 1960a4478b..817b50764d 100644 --- a/cpukit/posix/src/pthreadcreate.c +++ b/cpukit/posix/src/pthreadcreate.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreaddetach.c b/cpukit/posix/src/pthreaddetach.c index cf4a3f3f48..f316f65917 100644 --- a/cpukit/posix/src/pthreaddetach.c +++ b/cpukit/posix/src/pthreaddetach.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadequal.c b/cpukit/posix/src/pthreadequal.c index 3c315bff47..d0b0f13baa 100644 --- a/cpukit/posix/src/pthreadequal.c +++ b/cpukit/posix/src/pthreadequal.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadexit.c b/cpukit/posix/src/pthreadexit.c index 1d041bfe98..92a853e802 100644 --- a/cpukit/posix/src/pthreadexit.c +++ b/cpukit/posix/src/pthreadexit.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadgetaffinitynp.c b/cpukit/posix/src/pthreadgetaffinitynp.c index c9595a45f5..5324bfdc73 100644 --- a/cpukit/posix/src/pthreadgetaffinitynp.c +++ b/cpukit/posix/src/pthreadgetaffinitynp.c @@ -16,7 +16,7 @@ #define _GNU_SOURCE -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadgetattrnp.c b/cpukit/posix/src/pthreadgetattrnp.c index d84383c204..44c0edf0f0 100644 --- a/cpukit/posix/src/pthreadgetattrnp.c +++ b/cpukit/posix/src/pthreadgetattrnp.c @@ -16,7 +16,7 @@ #define _GNU_SOURCE -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadgetcpuclockid.c b/cpukit/posix/src/pthreadgetcpuclockid.c index cd7814b1a6..b92fcdd7db 100644 --- a/cpukit/posix/src/pthreadgetcpuclockid.c +++ b/cpukit/posix/src/pthreadgetcpuclockid.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadgetnamenp.c b/cpukit/posix/src/pthreadgetnamenp.c index 502f051b81..74f97555bf 100644 --- a/cpukit/posix/src/pthreadgetnamenp.c +++ b/cpukit/posix/src/pthreadgetnamenp.c @@ -8,7 +8,7 @@ #define _GNU_SOURCE -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadgetschedparam.c b/cpukit/posix/src/pthreadgetschedparam.c index 2a34e7825f..0e9cc31ee2 100644 --- a/cpukit/posix/src/pthreadgetschedparam.c +++ b/cpukit/posix/src/pthreadgetschedparam.c @@ -17,7 +17,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadinitthreads.c b/cpukit/posix/src/pthreadinitthreads.c index 3adaa8b7ab..4f08a72ffb 100644 --- a/cpukit/posix/src/pthreadinitthreads.c +++ b/cpukit/posix/src/pthreadinitthreads.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadjoin.c b/cpukit/posix/src/pthreadjoin.c index 3fc52d7c1f..383484183a 100644 --- a/cpukit/posix/src/pthreadjoin.c +++ b/cpukit/posix/src/pthreadjoin.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadkill.c b/cpukit/posix/src/pthreadkill.c index 1da8fb6ca1..a3a74cfacf 100644 --- a/cpukit/posix/src/pthreadkill.c +++ b/cpukit/posix/src/pthreadkill.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadonce.c b/cpukit/posix/src/pthreadonce.c index c92acf8642..b766926976 100644 --- a/cpukit/posix/src/pthreadonce.c +++ b/cpukit/posix/src/pthreadonce.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadself.c b/cpukit/posix/src/pthreadself.c index 95ce15a9b0..3cc161ff03 100644 --- a/cpukit/posix/src/pthreadself.c +++ b/cpukit/posix/src/pthreadself.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadsetaffinitynp.c b/cpukit/posix/src/pthreadsetaffinitynp.c index 7c8ac8c605..c2071720f0 100644 --- a/cpukit/posix/src/pthreadsetaffinitynp.c +++ b/cpukit/posix/src/pthreadsetaffinitynp.c @@ -16,7 +16,7 @@ #define _GNU_SOURCE -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadsetnamenp.c b/cpukit/posix/src/pthreadsetnamenp.c index cbb2e43311..cb75aac7a8 100644 --- a/cpukit/posix/src/pthreadsetnamenp.c +++ b/cpukit/posix/src/pthreadsetnamenp.c @@ -8,7 +8,7 @@ #define _GNU_SOURCE -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadsetschedparam.c b/cpukit/posix/src/pthreadsetschedparam.c index 8d87620d93..51dee9bca9 100644 --- a/cpukit/posix/src/pthreadsetschedparam.c +++ b/cpukit/posix/src/pthreadsetschedparam.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadsetschedprio.c b/cpukit/posix/src/pthreadsetschedprio.c index 01dbd86b70..72c7dab273 100644 --- a/cpukit/posix/src/pthreadsetschedprio.c +++ b/cpukit/posix/src/pthreadsetschedprio.c @@ -6,7 +6,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/pthreadsigmask.c b/cpukit/posix/src/pthreadsigmask.c index 1681761cf7..a989cb109b 100644 --- a/cpukit/posix/src/pthreadsigmask.c +++ b/cpukit/posix/src/pthreadsigmask.c @@ -18,7 +18,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/ptimer.c b/cpukit/posix/src/ptimer.c index 311bc0b909..7ac0403220 100644 --- a/cpukit/posix/src/ptimer.c +++ b/cpukit/posix/src/ptimer.c @@ -33,7 +33,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/rwlockattrdestroy.c b/cpukit/posix/src/rwlockattrdestroy.c index e788339e6c..3b7639445d 100644 --- a/cpukit/posix/src/rwlockattrdestroy.c +++ b/cpukit/posix/src/rwlockattrdestroy.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/rwlockattrgetpshared.c b/cpukit/posix/src/rwlockattrgetpshared.c index cd9af0a98e..dc7940cd99 100644 --- a/cpukit/posix/src/rwlockattrgetpshared.c +++ b/cpukit/posix/src/rwlockattrgetpshared.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/rwlockattrinit.c b/cpukit/posix/src/rwlockattrinit.c index d3e6e65ca3..0e37d26636 100644 --- a/cpukit/posix/src/rwlockattrinit.c +++ b/cpukit/posix/src/rwlockattrinit.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/rwlockattrsetpshared.c b/cpukit/posix/src/rwlockattrsetpshared.c index ea7b127bb2..99ae0efd10 100644 --- a/cpukit/posix/src/rwlockattrsetpshared.c +++ b/cpukit/posix/src/rwlockattrsetpshared.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sched_getparam.c b/cpukit/posix/src/sched_getparam.c index 4817745ad2..c84b6fdf2d 100644 --- a/cpukit/posix/src/sched_getparam.c +++ b/cpukit/posix/src/sched_getparam.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sched_getprioritymax.c b/cpukit/posix/src/sched_getprioritymax.c index d882153ff2..ff7f4b4885 100644 --- a/cpukit/posix/src/sched_getprioritymax.c +++ b/cpukit/posix/src/sched_getprioritymax.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sched_getprioritymin.c b/cpukit/posix/src/sched_getprioritymin.c index 7b89534056..75999af457 100644 --- a/cpukit/posix/src/sched_getprioritymin.c +++ b/cpukit/posix/src/sched_getprioritymin.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sched_getscheduler.c b/cpukit/posix/src/sched_getscheduler.c index 396ceb5bc2..6762aa79a6 100644 --- a/cpukit/posix/src/sched_getscheduler.c +++ b/cpukit/posix/src/sched_getscheduler.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sched_rr_get_interval.c b/cpukit/posix/src/sched_rr_get_interval.c index 1cb78eaf74..97186a3f74 100644 --- a/cpukit/posix/src/sched_rr_get_interval.c +++ b/cpukit/posix/src/sched_rr_get_interval.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sched_setparam.c b/cpukit/posix/src/sched_setparam.c index 14cd87099a..c917500edb 100644 --- a/cpukit/posix/src/sched_setparam.c +++ b/cpukit/posix/src/sched_setparam.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sched_setscheduler.c b/cpukit/posix/src/sched_setscheduler.c index 2e0134af8d..73036e65d3 100644 --- a/cpukit/posix/src/sched_setscheduler.c +++ b/cpukit/posix/src/sched_setscheduler.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sched_yield.c b/cpukit/posix/src/sched_yield.c index cbbcb34dd6..34242b759b 100644 --- a/cpukit/posix/src/sched_yield.c +++ b/cpukit/posix/src/sched_yield.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/semaphoredeletesupp.c b/cpukit/posix/src/semaphoredeletesupp.c index 69452369fb..ef50d2ef1f 100644 --- a/cpukit/posix/src/semaphoredeletesupp.c +++ b/cpukit/posix/src/semaphoredeletesupp.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/semclose.c b/cpukit/posix/src/semclose.c index a27b165350..79c5861db0 100644 --- a/cpukit/posix/src/semclose.c +++ b/cpukit/posix/src/semclose.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/semdestroy.c b/cpukit/posix/src/semdestroy.c index 61f5b1e80f..db3264bbae 100644 --- a/cpukit/posix/src/semdestroy.c +++ b/cpukit/posix/src/semdestroy.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/semgetvalue.c b/cpukit/posix/src/semgetvalue.c index f0242f2ca8..1e2670dd25 100644 --- a/cpukit/posix/src/semgetvalue.c +++ b/cpukit/posix/src/semgetvalue.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/seminit.c b/cpukit/posix/src/seminit.c index e752a2752b..09fc95f7a3 100644 --- a/cpukit/posix/src/seminit.c +++ b/cpukit/posix/src/seminit.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/semopen.c b/cpukit/posix/src/semopen.c index 86bd6a615e..97c513ec3a 100644 --- a/cpukit/posix/src/semopen.c +++ b/cpukit/posix/src/semopen.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sempost.c b/cpukit/posix/src/sempost.c index d750c1178c..f1fb7fa693 100644 --- a/cpukit/posix/src/sempost.c +++ b/cpukit/posix/src/sempost.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/semtimedwait.c b/cpukit/posix/src/semtimedwait.c index 16d0c24c9f..b2057016c5 100644 --- a/cpukit/posix/src/semtimedwait.c +++ b/cpukit/posix/src/semtimedwait.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/semtrywait.c b/cpukit/posix/src/semtrywait.c index 759744ec8e..3388169409 100644 --- a/cpukit/posix/src/semtrywait.c +++ b/cpukit/posix/src/semtrywait.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/semunlink.c b/cpukit/posix/src/semunlink.c index 2abc8f9435..021cee3343 100644 --- a/cpukit/posix/src/semunlink.c +++ b/cpukit/posix/src/semunlink.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/semwait.c b/cpukit/posix/src/semwait.c index 0353af4029..6f882257cb 100644 --- a/cpukit/posix/src/semwait.c +++ b/cpukit/posix/src/semwait.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/setcancelstate.c b/cpukit/posix/src/setcancelstate.c index b0a42e86b8..4040c37b55 100644 --- a/cpukit/posix/src/setcancelstate.c +++ b/cpukit/posix/src/setcancelstate.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/setcanceltype.c b/cpukit/posix/src/setcanceltype.c index 701317f1d6..302f901a74 100644 --- a/cpukit/posix/src/setcanceltype.c +++ b/cpukit/posix/src/setcanceltype.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/setitimer.c b/cpukit/posix/src/setitimer.c index 37ee0ebfee..02aeb320c7 100644 --- a/cpukit/posix/src/setitimer.c +++ b/cpukit/posix/src/setitimer.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/shm.c b/cpukit/posix/src/shm.c index 8ab14f4e0f..8f7df05956 100644 --- a/cpukit/posix/src/shm.c +++ b/cpukit/posix/src/shm.c @@ -33,7 +33,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/shmconfig.c b/cpukit/posix/src/shmconfig.c index e03f4e8be5..2d9fc1911b 100644 --- a/cpukit/posix/src/shmconfig.c +++ b/cpukit/posix/src/shmconfig.c @@ -25,7 +25,7 @@ * SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/shmheap.c b/cpukit/posix/src/shmheap.c index 6e8e53d568..3fceace786 100644 --- a/cpukit/posix/src/shmheap.c +++ b/cpukit/posix/src/shmheap.c @@ -10,7 +10,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/shmopen.c b/cpukit/posix/src/shmopen.c index 054a035f16..d7f494fd22 100644 --- a/cpukit/posix/src/shmopen.c +++ b/cpukit/posix/src/shmopen.c @@ -10,7 +10,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/shmops.c b/cpukit/posix/src/shmops.c index 0f28acac0d..904df841a3 100644 --- a/cpukit/posix/src/shmops.c +++ b/cpukit/posix/src/shmops.c @@ -25,7 +25,7 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/shmunlink.c b/cpukit/posix/src/shmunlink.c index 00d743ac80..053b9c4946 100644 --- a/cpukit/posix/src/shmunlink.c +++ b/cpukit/posix/src/shmunlink.c @@ -10,7 +10,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/shmwkspace.c b/cpukit/posix/src/shmwkspace.c index 038edc51d1..4fa4ec4771 100644 --- a/cpukit/posix/src/shmwkspace.c +++ b/cpukit/posix/src/shmwkspace.c @@ -10,7 +10,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sigaction.c b/cpukit/posix/src/sigaction.c index 26df98d394..86d66480fc 100644 --- a/cpukit/posix/src/sigaction.c +++ b/cpukit/posix/src/sigaction.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sigaddset.c b/cpukit/posix/src/sigaddset.c index 4a934d37fe..2dc17cd6b6 100644 --- a/cpukit/posix/src/sigaddset.c +++ b/cpukit/posix/src/sigaddset.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sigdelset.c b/cpukit/posix/src/sigdelset.c index e2989a4cde..20f91e6ecf 100644 --- a/cpukit/posix/src/sigdelset.c +++ b/cpukit/posix/src/sigdelset.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sigemptyset.c b/cpukit/posix/src/sigemptyset.c index 23d7258cf7..50e24daa59 100644 --- a/cpukit/posix/src/sigemptyset.c +++ b/cpukit/posix/src/sigemptyset.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sigfillset.c b/cpukit/posix/src/sigfillset.c index 45d6d5355e..6adc372775 100644 --- a/cpukit/posix/src/sigfillset.c +++ b/cpukit/posix/src/sigfillset.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sigismember.c b/cpukit/posix/src/sigismember.c index 413b8b880a..9928e18e6f 100644 --- a/cpukit/posix/src/sigismember.c +++ b/cpukit/posix/src/sigismember.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/signal_2.c b/cpukit/posix/src/signal_2.c index 9149bf0a02..bd891e22ee 100644 --- a/cpukit/posix/src/signal_2.c +++ b/cpukit/posix/src/signal_2.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sigpending.c b/cpukit/posix/src/sigpending.c index cf25cf8357..d65fe0586f 100644 --- a/cpukit/posix/src/sigpending.c +++ b/cpukit/posix/src/sigpending.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sigprocmask.c b/cpukit/posix/src/sigprocmask.c index 74710458a2..235a58c52c 100644 --- a/cpukit/posix/src/sigprocmask.c +++ b/cpukit/posix/src/sigprocmask.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sigqueue.c b/cpukit/posix/src/sigqueue.c index c97f50b481..5446ca9701 100644 --- a/cpukit/posix/src/sigqueue.c +++ b/cpukit/posix/src/sigqueue.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sigsuspend.c b/cpukit/posix/src/sigsuspend.c index c6a48a911e..79c93fc457 100644 --- a/cpukit/posix/src/sigsuspend.c +++ b/cpukit/posix/src/sigsuspend.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sigtimedwait.c b/cpukit/posix/src/sigtimedwait.c index 351edf0a1e..4e2b6c2658 100644 --- a/cpukit/posix/src/sigtimedwait.c +++ b/cpukit/posix/src/sigtimedwait.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sigwait.c b/cpukit/posix/src/sigwait.c index 121c74f3f3..3b07cc2c49 100644 --- a/cpukit/posix/src/sigwait.c +++ b/cpukit/posix/src/sigwait.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sigwaitinfo.c b/cpukit/posix/src/sigwaitinfo.c index ec74de9247..4e90eca642 100644 --- a/cpukit/posix/src/sigwaitinfo.c +++ b/cpukit/posix/src/sigwaitinfo.c @@ -17,7 +17,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/sysconf.c b/cpukit/posix/src/sysconf.c index 7227a6d11c..f905a82f07 100644 --- a/cpukit/posix/src/sysconf.c +++ b/cpukit/posix/src/sysconf.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/testcancel.c b/cpukit/posix/src/testcancel.c index f50c7782ed..0d6471f818 100644 --- a/cpukit/posix/src/testcancel.c +++ b/cpukit/posix/src/testcancel.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/timergetoverrun.c b/cpukit/posix/src/timergetoverrun.c index 263aad83b1..ac75c3f678 100644 --- a/cpukit/posix/src/timergetoverrun.c +++ b/cpukit/posix/src/timergetoverrun.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/timergettime.c b/cpukit/posix/src/timergettime.c index 66708e947b..4b884b8cbb 100644 --- a/cpukit/posix/src/timergettime.c +++ b/cpukit/posix/src/timergettime.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/timersettime.c b/cpukit/posix/src/timersettime.c index eb89029e29..b83c8b07c9 100644 --- a/cpukit/posix/src/timersettime.c +++ b/cpukit/posix/src/timersettime.c @@ -16,7 +16,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/ualarm.c b/cpukit/posix/src/ualarm.c index 371a961c94..292ae36e2e 100644 --- a/cpukit/posix/src/ualarm.c +++ b/cpukit/posix/src/ualarm.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/vfork.c b/cpukit/posix/src/vfork.c index d3196a53be..6483d1961a 100644 --- a/cpukit/posix/src/vfork.c +++ b/cpukit/posix/src/vfork.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/wait.c b/cpukit/posix/src/wait.c index 908754ae06..da248c9870 100644 --- a/cpukit/posix/src/wait.c +++ b/cpukit/posix/src/wait.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/posix/src/waitpid.c b/cpukit/posix/src/waitpid.c index d95e475607..20a56b4bcf 100644 --- a/cpukit/posix/src/waitpid.c +++ b/cpukit/posix/src/waitpid.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/barrier.c b/cpukit/rtems/src/barrier.c index c0d167b0db..bcfcf270e9 100644 --- a/cpukit/rtems/src/barrier.c +++ b/cpukit/rtems/src/barrier.c @@ -33,7 +33,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/barriercreate.c b/cpukit/rtems/src/barriercreate.c index 5e0f883106..a4a362239b 100644 --- a/cpukit/rtems/src/barriercreate.c +++ b/cpukit/rtems/src/barriercreate.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/barrierdelete.c b/cpukit/rtems/src/barrierdelete.c index 3d57908326..b35b2f1fca 100644 --- a/cpukit/rtems/src/barrierdelete.c +++ b/cpukit/rtems/src/barrierdelete.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/barrierident.c b/cpukit/rtems/src/barrierident.c index 8ba8c56f24..e3d6a84b80 100644 --- a/cpukit/rtems/src/barrierident.c +++ b/cpukit/rtems/src/barrierident.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/barrierrelease.c b/cpukit/rtems/src/barrierrelease.c index 2c7f72d303..c4385b02fa 100644 --- a/cpukit/rtems/src/barrierrelease.c +++ b/cpukit/rtems/src/barrierrelease.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/barrierwait.c b/cpukit/rtems/src/barrierwait.c index f30f152abe..51fcd6675e 100644 --- a/cpukit/rtems/src/barrierwait.c +++ b/cpukit/rtems/src/barrierwait.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/clockgetsecondssinceepoch.c b/cpukit/rtems/src/clockgetsecondssinceepoch.c index 108c0883ed..1c2cb23051 100644 --- a/cpukit/rtems/src/clockgetsecondssinceepoch.c +++ b/cpukit/rtems/src/clockgetsecondssinceepoch.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/clockgettickspersecond.c b/cpukit/rtems/src/clockgettickspersecond.c index 07497cfd58..ecfe5fa8b6 100644 --- a/cpukit/rtems/src/clockgettickspersecond.c +++ b/cpukit/rtems/src/clockgettickspersecond.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/clockgettod.c b/cpukit/rtems/src/clockgettod.c index eb01f0ffdc..f65f5e2f4b 100644 --- a/cpukit/rtems/src/clockgettod.c +++ b/cpukit/rtems/src/clockgettod.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/clockgettodtimeval.c b/cpukit/rtems/src/clockgettodtimeval.c index 17314a485e..d807ade2ea 100644 --- a/cpukit/rtems/src/clockgettodtimeval.c +++ b/cpukit/rtems/src/clockgettodtimeval.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/clockgetuptime.c b/cpukit/rtems/src/clockgetuptime.c index acbe39a00e..e60f47186d 100644 --- a/cpukit/rtems/src/clockgetuptime.c +++ b/cpukit/rtems/src/clockgetuptime.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/clockgetuptimenanoseconds.c b/cpukit/rtems/src/clockgetuptimenanoseconds.c index 71f5588db2..30d5cd77fa 100644 --- a/cpukit/rtems/src/clockgetuptimenanoseconds.c +++ b/cpukit/rtems/src/clockgetuptimenanoseconds.c @@ -13,8 +13,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/rtems/clock.h> diff --git a/cpukit/rtems/src/clockgetuptimetimeval.c b/cpukit/rtems/src/clockgetuptimetimeval.c index 0e095e6cb5..6fdc0d22c9 100644 --- a/cpukit/rtems/src/clockgetuptimetimeval.c +++ b/cpukit/rtems/src/clockgetuptimetimeval.c @@ -19,8 +19,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/rtems/clock.h> diff --git a/cpukit/rtems/src/clockset.c b/cpukit/rtems/src/clockset.c index f60efb4c11..a42cde7d90 100644 --- a/cpukit/rtems/src/clockset.c +++ b/cpukit/rtems/src/clockset.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/clocktick.c b/cpukit/rtems/src/clocktick.c index df8012e017..568610a427 100644 --- a/cpukit/rtems/src/clocktick.c +++ b/cpukit/rtems/src/clocktick.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/clocktodtoseconds.c b/cpukit/rtems/src/clocktodtoseconds.c index 99d0cbdc5b..30bfba8cbc 100644 --- a/cpukit/rtems/src/clocktodtoseconds.c +++ b/cpukit/rtems/src/clocktodtoseconds.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/clocktodvalidate.c b/cpukit/rtems/src/clocktodvalidate.c index 26bd7a3b0e..55cff448b2 100644 --- a/cpukit/rtems/src/clocktodvalidate.c +++ b/cpukit/rtems/src/clocktodvalidate.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/dpmem.c b/cpukit/rtems/src/dpmem.c index 79f0fb2e69..10a11374c0 100644 --- a/cpukit/rtems/src/dpmem.c +++ b/cpukit/rtems/src/dpmem.c @@ -33,7 +33,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/dpmemcreate.c b/cpukit/rtems/src/dpmemcreate.c index 1dc096d084..104d0a8146 100644 --- a/cpukit/rtems/src/dpmemcreate.c +++ b/cpukit/rtems/src/dpmemcreate.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/dpmemdelete.c b/cpukit/rtems/src/dpmemdelete.c index f303629618..f565f9471b 100644 --- a/cpukit/rtems/src/dpmemdelete.c +++ b/cpukit/rtems/src/dpmemdelete.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/dpmemexternal2internal.c b/cpukit/rtems/src/dpmemexternal2internal.c index 0d9a754b23..dda5139fca 100644 --- a/cpukit/rtems/src/dpmemexternal2internal.c +++ b/cpukit/rtems/src/dpmemexternal2internal.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/dpmemident.c b/cpukit/rtems/src/dpmemident.c index 852a4a482c..775d833bde 100644 --- a/cpukit/rtems/src/dpmemident.c +++ b/cpukit/rtems/src/dpmemident.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/dpmeminternal2external.c b/cpukit/rtems/src/dpmeminternal2external.c index 9cd1a5d2f8..5694e5e387 100644 --- a/cpukit/rtems/src/dpmeminternal2external.c +++ b/cpukit/rtems/src/dpmeminternal2external.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/eventmp.c b/cpukit/rtems/src/eventmp.c index ac9ab69f08..ee971a720a 100644 --- a/cpukit/rtems/src/eventmp.c +++ b/cpukit/rtems/src/eventmp.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/eventreceive.c b/cpukit/rtems/src/eventreceive.c index 75a5293787..190ee8234d 100644 --- a/cpukit/rtems/src/eventreceive.c +++ b/cpukit/rtems/src/eventreceive.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/rtems/eventimpl.h> diff --git a/cpukit/rtems/src/eventseize.c b/cpukit/rtems/src/eventseize.c index f07a62b7c0..6c2b82da36 100644 --- a/cpukit/rtems/src/eventseize.c +++ b/cpukit/rtems/src/eventseize.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/sysinit.h> diff --git a/cpukit/rtems/src/eventsend.c b/cpukit/rtems/src/eventsend.c index 6a383d8892..cfd091c96d 100644 --- a/cpukit/rtems/src/eventsend.c +++ b/cpukit/rtems/src/eventsend.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/rtems/eventimpl.h> diff --git a/cpukit/rtems/src/eventsurrender.c b/cpukit/rtems/src/eventsurrender.c index c805b0e89d..49f77d2663 100644 --- a/cpukit/rtems/src/eventsurrender.c +++ b/cpukit/rtems/src/eventsurrender.c @@ -14,8 +14,8 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H - #include "config.h" +#ifdef HAVE_CONFIG_H +#include "config.h" #endif #include <rtems/rtems/eventimpl.h> diff --git a/cpukit/rtems/src/getapiconfig.c b/cpukit/rtems/src/getapiconfig.c index 088ea5909f..2e94526e10 100644 --- a/cpukit/rtems/src/getapiconfig.c +++ b/cpukit/rtems/src/getapiconfig.c @@ -25,7 +25,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/intrbody.c b/cpukit/rtems/src/intrbody.c index 9d5980ee21..fd77783a94 100644 --- a/cpukit/rtems/src/intrbody.c +++ b/cpukit/rtems/src/intrbody.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/intrcatch.c b/cpukit/rtems/src/intrcatch.c index ac972f27a2..9083af1eaf 100644 --- a/cpukit/rtems/src/intrcatch.c +++ b/cpukit/rtems/src/intrcatch.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/modes.c b/cpukit/rtems/src/modes.c index 5c926d92d6..77d3d97233 100644 --- a/cpukit/rtems/src/modes.c +++ b/cpukit/rtems/src/modes.c @@ -15,7 +15,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/mp.c b/cpukit/rtems/src/mp.c index 193ffc096b..d2cca9cb63 100644 --- a/cpukit/rtems/src/mp.c +++ b/cpukit/rtems/src/mp.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/msg.c b/cpukit/rtems/src/msg.c index 1156db4485..ea09af9e7a 100644 --- a/cpukit/rtems/src/msg.c +++ b/cpukit/rtems/src/msg.c @@ -33,7 +33,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/msgmp.c b/cpukit/rtems/src/msgmp.c index 78a7c7cd84..4971b94809 100644 --- a/cpukit/rtems/src/msgmp.c +++ b/cpukit/rtems/src/msgmp.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/msgqbroadcast.c b/cpukit/rtems/src/msgqbroadcast.c index 4c4e04e097..7b4efb9803 100644 --- a/cpukit/rtems/src/msgqbroadcast.c +++ b/cpukit/rtems/src/msgqbroadcast.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/msgqcreate.c b/cpukit/rtems/src/msgqcreate.c index 7054873774..9d4e8cdfd6 100644 --- a/cpukit/rtems/src/msgqcreate.c +++ b/cpukit/rtems/src/msgqcreate.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/msgqdelete.c b/cpukit/rtems/src/msgqdelete.c index 7a3e40a4b5..791f96e676 100644 --- a/cpukit/rtems/src/msgqdelete.c +++ b/cpukit/rtems/src/msgqdelete.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/msgqflush.c b/cpukit/rtems/src/msgqflush.c index 16f743234f..7e7442b34a 100644 --- a/cpukit/rtems/src/msgqflush.c +++ b/cpukit/rtems/src/msgqflush.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/msgqgetnumberpending.c b/cpukit/rtems/src/msgqgetnumberpending.c index 2a49711e87..0a62f724f2 100644 --- a/cpukit/rtems/src/msgqgetnumberpending.c +++ b/cpukit/rtems/src/msgqgetnumberpending.c @@ -14,7 +14,7 @@ * http://www.rtems.org/license/LICENSE. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include "config.h" #endif diff --git a/cpukit/rtems/src/msgqident.c b/cpukit/rtems/src/msgqident.c index 89496deca5..f25f0cdc6c 100644 - |