From 80cf60efec79ac63cc3a26c6ad8f86790a385847 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 15 Apr 2020 09:48:32 +0200 Subject: Canonicalize config.h include Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif --- testsuites/psxtests/psxhdrs/netdb/endhostent.c | 2 +- testsuites/psxtests/psxhdrs/netdb/endnetent.c | 2 +- testsuites/psxtests/psxhdrs/netdb/endprotoent.c | 2 +- testsuites/psxtests/psxhdrs/netdb/endservent.c | 2 +- testsuites/psxtests/psxhdrs/netdb/freeaddrinfo.c | 2 +- testsuites/psxtests/psxhdrs/netdb/gai_strerror.c | 2 +- testsuites/psxtests/psxhdrs/netdb/getaddrinfo.c | 2 +- testsuites/psxtests/psxhdrs/netdb/gethostbyaddr.c | 2 +- testsuites/psxtests/psxhdrs/netdb/gethostbyname.c | 2 +- testsuites/psxtests/psxhdrs/netdb/gethostent.c | 2 +- testsuites/psxtests/psxhdrs/netdb/getnameinfo.c | 2 +- testsuites/psxtests/psxhdrs/netdb/getnetbyaddr.c | 2 +- testsuites/psxtests/psxhdrs/netdb/getnetbyname.c | 2 +- testsuites/psxtests/psxhdrs/netdb/getnetent.c | 2 +- testsuites/psxtests/psxhdrs/netdb/getprotobyname.c | 2 +- testsuites/psxtests/psxhdrs/netdb/getprotobynumber.c | 2 +- testsuites/psxtests/psxhdrs/netdb/getprotoent.c | 2 +- testsuites/psxtests/psxhdrs/netdb/getservbyname.c | 2 +- testsuites/psxtests/psxhdrs/netdb/getservbyport.c | 2 +- testsuites/psxtests/psxhdrs/netdb/getservent.c | 2 +- testsuites/psxtests/psxhdrs/netdb/h_errno.c | 2 +- testsuites/psxtests/psxhdrs/netdb/sethostent.c | 2 +- testsuites/psxtests/psxhdrs/netdb/setnetent.c | 2 +- testsuites/psxtests/psxhdrs/netdb/setprotoent.c | 2 +- testsuites/psxtests/psxhdrs/netdb/setservent.c | 2 +- testsuites/psxtests/psxhdrs/string/memccpy.c | 2 +- testsuites/psxtests/psxhdrs/string/memchr.c | 2 +- testsuites/psxtests/psxhdrs/string/memcmp.c | 2 +- testsuites/psxtests/psxhdrs/string/memcpy.c | 2 +- testsuites/psxtests/psxhdrs/string/memmove.c | 2 +- testsuites/psxtests/psxhdrs/string/memset.c | 2 +- testsuites/psxtests/psxhdrs/string/stpcpy.c | 2 +- testsuites/psxtests/psxhdrs/string/stpncpy.c | 2 +- testsuites/psxtests/psxhdrs/string/strcat.c | 2 +- testsuites/psxtests/psxhdrs/string/strchr.c | 2 +- testsuites/psxtests/psxhdrs/string/strcmp.c | 2 +- testsuites/psxtests/psxhdrs/string/strcoll.c | 2 +- testsuites/psxtests/psxhdrs/string/strcoll_l.c | 2 +- testsuites/psxtests/psxhdrs/string/strcpy.c | 2 +- testsuites/psxtests/psxhdrs/string/strcspn.c | 2 +- testsuites/psxtests/psxhdrs/string/strdup.c | 2 +- testsuites/psxtests/psxhdrs/string/strerror.c | 2 +- testsuites/psxtests/psxhdrs/string/strerror_l.c | 2 +- testsuites/psxtests/psxhdrs/string/strerror_r.c | 2 +- testsuites/psxtests/psxhdrs/string/strlen.c | 2 +- testsuites/psxtests/psxhdrs/string/strncat.c | 2 +- testsuites/psxtests/psxhdrs/string/strncmp.c | 2 +- testsuites/psxtests/psxhdrs/string/strncpy.c | 2 +- testsuites/psxtests/psxhdrs/string/strndup.c | 2 +- testsuites/psxtests/psxhdrs/string/strnlen.c | 2 +- testsuites/psxtests/psxhdrs/string/strpbrk.c | 2 +- testsuites/psxtests/psxhdrs/string/strrchr.c | 2 +- testsuites/psxtests/psxhdrs/string/strsignal.c | 2 +- testsuites/psxtests/psxhdrs/string/strspn.c | 2 +- testsuites/psxtests/psxhdrs/string/strstr.c | 2 +- testsuites/psxtests/psxhdrs/string/strtok.c | 2 +- testsuites/psxtests/psxhdrs/string/strtok_r.c | 2 +- testsuites/psxtests/psxhdrs/string/strxfrm.c | 2 +- testsuites/psxtests/psxhdrs/string/strxfrm_l.c | 2 +- testsuites/psxtests/psxhdrs/utime/utime.c | 2 +- 60 files changed, 60 insertions(+), 60 deletions(-) (limited to 'testsuites/psxtests/psxhdrs') diff --git a/testsuites/psxtests/psxhdrs/netdb/endhostent.c b/testsuites/psxtests/psxhdrs/netdb/endhostent.c index ee9d8ae9bf..3fb86c5de3 100644 --- a/testsuites/psxtests/psxhdrs/netdb/endhostent.c +++ b/testsuites/psxtests/psxhdrs/netdb/endhostent.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/endnetent.c b/testsuites/psxtests/psxhdrs/netdb/endnetent.c index d54a36cadc..08dd24ef0c 100644 --- a/testsuites/psxtests/psxhdrs/netdb/endnetent.c +++ b/testsuites/psxtests/psxhdrs/netdb/endnetent.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/endprotoent.c b/testsuites/psxtests/psxhdrs/netdb/endprotoent.c index 16fa52d956..c03cd1df13 100644 --- a/testsuites/psxtests/psxhdrs/netdb/endprotoent.c +++ b/testsuites/psxtests/psxhdrs/netdb/endprotoent.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/endservent.c b/testsuites/psxtests/psxhdrs/netdb/endservent.c index 31cec715e5..87c202988f 100644 --- a/testsuites/psxtests/psxhdrs/netdb/endservent.c +++ b/testsuites/psxtests/psxhdrs/netdb/endservent.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/freeaddrinfo.c b/testsuites/psxtests/psxhdrs/netdb/freeaddrinfo.c index aac1de70bf..341dcd7545 100644 --- a/testsuites/psxtests/psxhdrs/netdb/freeaddrinfo.c +++ b/testsuites/psxtests/psxhdrs/netdb/freeaddrinfo.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/gai_strerror.c b/testsuites/psxtests/psxhdrs/netdb/gai_strerror.c index d482d31754..91ce55a338 100644 --- a/testsuites/psxtests/psxhdrs/netdb/gai_strerror.c +++ b/testsuites/psxtests/psxhdrs/netdb/gai_strerror.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/getaddrinfo.c b/testsuites/psxtests/psxhdrs/netdb/getaddrinfo.c index eb062f92ee..52b9a81421 100644 --- a/testsuites/psxtests/psxhdrs/netdb/getaddrinfo.c +++ b/testsuites/psxtests/psxhdrs/netdb/getaddrinfo.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/gethostbyaddr.c b/testsuites/psxtests/psxhdrs/netdb/gethostbyaddr.c index 962a6072a7..07d734334b 100644 --- a/testsuites/psxtests/psxhdrs/netdb/gethostbyaddr.c +++ b/testsuites/psxtests/psxhdrs/netdb/gethostbyaddr.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/gethostbyname.c b/testsuites/psxtests/psxhdrs/netdb/gethostbyname.c index f94995aa31..74ee33a102 100644 --- a/testsuites/psxtests/psxhdrs/netdb/gethostbyname.c +++ b/testsuites/psxtests/psxhdrs/netdb/gethostbyname.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/gethostent.c b/testsuites/psxtests/psxhdrs/netdb/gethostent.c index c3ad935ece..e511bee372 100644 --- a/testsuites/psxtests/psxhdrs/netdb/gethostent.c +++ b/testsuites/psxtests/psxhdrs/netdb/gethostent.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/getnameinfo.c b/testsuites/psxtests/psxhdrs/netdb/getnameinfo.c index 2a89f99609..e6c06d795b 100644 --- a/testsuites/psxtests/psxhdrs/netdb/getnameinfo.c +++ b/testsuites/psxtests/psxhdrs/netdb/getnameinfo.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/getnetbyaddr.c b/testsuites/psxtests/psxhdrs/netdb/getnetbyaddr.c index ac00669827..01600d2e85 100644 --- a/testsuites/psxtests/psxhdrs/netdb/getnetbyaddr.c +++ b/testsuites/psxtests/psxhdrs/netdb/getnetbyaddr.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/getnetbyname.c b/testsuites/psxtests/psxhdrs/netdb/getnetbyname.c index 2b10eb90ba..bd5d2c690c 100644 --- a/testsuites/psxtests/psxhdrs/netdb/getnetbyname.c +++ b/testsuites/psxtests/psxhdrs/netdb/getnetbyname.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/getnetent.c b/testsuites/psxtests/psxhdrs/netdb/getnetent.c index 433f7eb202..a46d97af27 100644 --- a/testsuites/psxtests/psxhdrs/netdb/getnetent.c +++ b/testsuites/psxtests/psxhdrs/netdb/getnetent.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/getprotobyname.c b/testsuites/psxtests/psxhdrs/netdb/getprotobyname.c index b9e771f7a0..379cd8012e 100644 --- a/testsuites/psxtests/psxhdrs/netdb/getprotobyname.c +++ b/testsuites/psxtests/psxhdrs/netdb/getprotobyname.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/getprotobynumber.c b/testsuites/psxtests/psxhdrs/netdb/getprotobynumber.c index 6d9572c8d9..d46bfb55ac 100644 --- a/testsuites/psxtests/psxhdrs/netdb/getprotobynumber.c +++ b/testsuites/psxtests/psxhdrs/netdb/getprotobynumber.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/getprotoent.c b/testsuites/psxtests/psxhdrs/netdb/getprotoent.c index a47b1219db..93cbd73b81 100644 --- a/testsuites/psxtests/psxhdrs/netdb/getprotoent.c +++ b/testsuites/psxtests/psxhdrs/netdb/getprotoent.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/getservbyname.c b/testsuites/psxtests/psxhdrs/netdb/getservbyname.c index 6d9f8c7598..ff87bda287 100644 --- a/testsuites/psxtests/psxhdrs/netdb/getservbyname.c +++ b/testsuites/psxtests/psxhdrs/netdb/getservbyname.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/getservbyport.c b/testsuites/psxtests/psxhdrs/netdb/getservbyport.c index de4439b025..e9d6feed26 100644 --- a/testsuites/psxtests/psxhdrs/netdb/getservbyport.c +++ b/testsuites/psxtests/psxhdrs/netdb/getservbyport.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/getservent.c b/testsuites/psxtests/psxhdrs/netdb/getservent.c index 8057d794e1..c473d7cb4f 100644 --- a/testsuites/psxtests/psxhdrs/netdb/getservent.c +++ b/testsuites/psxtests/psxhdrs/netdb/getservent.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/h_errno.c b/testsuites/psxtests/psxhdrs/netdb/h_errno.c index f9e71587e3..1318b4553e 100644 --- a/testsuites/psxtests/psxhdrs/netdb/h_errno.c +++ b/testsuites/psxtests/psxhdrs/netdb/h_errno.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/sethostent.c b/testsuites/psxtests/psxhdrs/netdb/sethostent.c index 4d963a602c..8f161ea34f 100644 --- a/testsuites/psxtests/psxhdrs/netdb/sethostent.c +++ b/testsuites/psxtests/psxhdrs/netdb/sethostent.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/setnetent.c b/testsuites/psxtests/psxhdrs/netdb/setnetent.c index 810fb9322c..9c9c4f34fb 100644 --- a/testsuites/psxtests/psxhdrs/netdb/setnetent.c +++ b/testsuites/psxtests/psxhdrs/netdb/setnetent.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/setprotoent.c b/testsuites/psxtests/psxhdrs/netdb/setprotoent.c index e7db90d013..35bf5cac5c 100644 --- a/testsuites/psxtests/psxhdrs/netdb/setprotoent.c +++ b/testsuites/psxtests/psxhdrs/netdb/setprotoent.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/netdb/setservent.c b/testsuites/psxtests/psxhdrs/netdb/setservent.c index 71ddd767a5..8d2c20a7fe 100644 --- a/testsuites/psxtests/psxhdrs/netdb/setservent.c +++ b/testsuites/psxtests/psxhdrs/netdb/setservent.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/memccpy.c b/testsuites/psxtests/psxhdrs/string/memccpy.c index a32a1936d5..25ea6c8fe8 100644 --- a/testsuites/psxtests/psxhdrs/string/memccpy.c +++ b/testsuites/psxtests/psxhdrs/string/memccpy.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/memchr.c b/testsuites/psxtests/psxhdrs/string/memchr.c index 2dbe548d2b..5cbdfb06a8 100644 --- a/testsuites/psxtests/psxhdrs/string/memchr.c +++ b/testsuites/psxtests/psxhdrs/string/memchr.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/memcmp.c b/testsuites/psxtests/psxhdrs/string/memcmp.c index 78b7210f69..6ab0f7278d 100644 --- a/testsuites/psxtests/psxhdrs/string/memcmp.c +++ b/testsuites/psxtests/psxhdrs/string/memcmp.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/memcpy.c b/testsuites/psxtests/psxhdrs/string/memcpy.c index 43da9c8961..1c7038546b 100644 --- a/testsuites/psxtests/psxhdrs/string/memcpy.c +++ b/testsuites/psxtests/psxhdrs/string/memcpy.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/memmove.c b/testsuites/psxtests/psxhdrs/string/memmove.c index 7c135d4690..611edfb5f9 100644 --- a/testsuites/psxtests/psxhdrs/string/memmove.c +++ b/testsuites/psxtests/psxhdrs/string/memmove.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/memset.c b/testsuites/psxtests/psxhdrs/string/memset.c index f76fcd1006..c63aa5bad7 100644 --- a/testsuites/psxtests/psxhdrs/string/memset.c +++ b/testsuites/psxtests/psxhdrs/string/memset.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/stpcpy.c b/testsuites/psxtests/psxhdrs/string/stpcpy.c index cd4d4c8333..7e5a6410ea 100644 --- a/testsuites/psxtests/psxhdrs/string/stpcpy.c +++ b/testsuites/psxtests/psxhdrs/string/stpcpy.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/stpncpy.c b/testsuites/psxtests/psxhdrs/string/stpncpy.c index 920b9cd48c..f81752de76 100644 --- a/testsuites/psxtests/psxhdrs/string/stpncpy.c +++ b/testsuites/psxtests/psxhdrs/string/stpncpy.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strcat.c b/testsuites/psxtests/psxhdrs/string/strcat.c index 0e04266d93..15a0f74949 100644 --- a/testsuites/psxtests/psxhdrs/string/strcat.c +++ b/testsuites/psxtests/psxhdrs/string/strcat.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strchr.c b/testsuites/psxtests/psxhdrs/string/strchr.c index 0741247d5a..fc619dfd2a 100644 --- a/testsuites/psxtests/psxhdrs/string/strchr.c +++ b/testsuites/psxtests/psxhdrs/string/strchr.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strcmp.c b/testsuites/psxtests/psxhdrs/string/strcmp.c index de95120b94..92ef4f4172 100644 --- a/testsuites/psxtests/psxhdrs/string/strcmp.c +++ b/testsuites/psxtests/psxhdrs/string/strcmp.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strcoll.c b/testsuites/psxtests/psxhdrs/string/strcoll.c index 9d76708e27..9381b7f75e 100644 --- a/testsuites/psxtests/psxhdrs/string/strcoll.c +++ b/testsuites/psxtests/psxhdrs/string/strcoll.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strcoll_l.c b/testsuites/psxtests/psxhdrs/string/strcoll_l.c index 03edadcbb9..542e1727f3 100644 --- a/testsuites/psxtests/psxhdrs/string/strcoll_l.c +++ b/testsuites/psxtests/psxhdrs/string/strcoll_l.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strcpy.c b/testsuites/psxtests/psxhdrs/string/strcpy.c index 9c2dda8539..98c2c7cc83 100644 --- a/testsuites/psxtests/psxhdrs/string/strcpy.c +++ b/testsuites/psxtests/psxhdrs/string/strcpy.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strcspn.c b/testsuites/psxtests/psxhdrs/string/strcspn.c index 8dfe905ee0..4f2f6fca2c 100644 --- a/testsuites/psxtests/psxhdrs/string/strcspn.c +++ b/testsuites/psxtests/psxhdrs/string/strcspn.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strdup.c b/testsuites/psxtests/psxhdrs/string/strdup.c index 655078eea7..2d147f7890 100644 --- a/testsuites/psxtests/psxhdrs/string/strdup.c +++ b/testsuites/psxtests/psxhdrs/string/strdup.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strerror.c b/testsuites/psxtests/psxhdrs/string/strerror.c index 5a0dfd8135..49c4321897 100644 --- a/testsuites/psxtests/psxhdrs/string/strerror.c +++ b/testsuites/psxtests/psxhdrs/string/strerror.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strerror_l.c b/testsuites/psxtests/psxhdrs/string/strerror_l.c index 7b4edd6af1..26cf14ea45 100644 --- a/testsuites/psxtests/psxhdrs/string/strerror_l.c +++ b/testsuites/psxtests/psxhdrs/string/strerror_l.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strerror_r.c b/testsuites/psxtests/psxhdrs/string/strerror_r.c index 92eed35d46..0c9a68960b 100644 --- a/testsuites/psxtests/psxhdrs/string/strerror_r.c +++ b/testsuites/psxtests/psxhdrs/string/strerror_r.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strlen.c b/testsuites/psxtests/psxhdrs/string/strlen.c index 46abe67b16..3f71f58f5b 100644 --- a/testsuites/psxtests/psxhdrs/string/strlen.c +++ b/testsuites/psxtests/psxhdrs/string/strlen.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strncat.c b/testsuites/psxtests/psxhdrs/string/strncat.c index 395b205446..730a56cfa6 100644 --- a/testsuites/psxtests/psxhdrs/string/strncat.c +++ b/testsuites/psxtests/psxhdrs/string/strncat.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strncmp.c b/testsuites/psxtests/psxhdrs/string/strncmp.c index f2de99bb6b..9b9fccc581 100644 --- a/testsuites/psxtests/psxhdrs/string/strncmp.c +++ b/testsuites/psxtests/psxhdrs/string/strncmp.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strncpy.c b/testsuites/psxtests/psxhdrs/string/strncpy.c index a17bf2d543..50b64b3d57 100644 --- a/testsuites/psxtests/psxhdrs/string/strncpy.c +++ b/testsuites/psxtests/psxhdrs/string/strncpy.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strndup.c b/testsuites/psxtests/psxhdrs/string/strndup.c index 3ab7eef773..f2298ea999 100644 --- a/testsuites/psxtests/psxhdrs/string/strndup.c +++ b/testsuites/psxtests/psxhdrs/string/strndup.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strnlen.c b/testsuites/psxtests/psxhdrs/string/strnlen.c index 4114c90dea..5dad39dd65 100644 --- a/testsuites/psxtests/psxhdrs/string/strnlen.c +++ b/testsuites/psxtests/psxhdrs/string/strnlen.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strpbrk.c b/testsuites/psxtests/psxhdrs/string/strpbrk.c index b53e139506..0fc6aa70db 100644 --- a/testsuites/psxtests/psxhdrs/string/strpbrk.c +++ b/testsuites/psxtests/psxhdrs/string/strpbrk.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strrchr.c b/testsuites/psxtests/psxhdrs/string/strrchr.c index 8285b8df61..2b37e16384 100644 --- a/testsuites/psxtests/psxhdrs/string/strrchr.c +++ b/testsuites/psxtests/psxhdrs/string/strrchr.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strsignal.c b/testsuites/psxtests/psxhdrs/string/strsignal.c index 55b2de3833..3b4de0c0f2 100644 --- a/testsuites/psxtests/psxhdrs/string/strsignal.c +++ b/testsuites/psxtests/psxhdrs/string/strsignal.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strspn.c b/testsuites/psxtests/psxhdrs/string/strspn.c index ee9b79afcd..f8d4cbe82e 100644 --- a/testsuites/psxtests/psxhdrs/string/strspn.c +++ b/testsuites/psxtests/psxhdrs/string/strspn.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strstr.c b/testsuites/psxtests/psxhdrs/string/strstr.c index c357869a8f..3e8f12b518 100644 --- a/testsuites/psxtests/psxhdrs/string/strstr.c +++ b/testsuites/psxtests/psxhdrs/string/strstr.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strtok.c b/testsuites/psxtests/psxhdrs/string/strtok.c index abe91cf1a8..ebb9f9584e 100644 --- a/testsuites/psxtests/psxhdrs/string/strtok.c +++ b/testsuites/psxtests/psxhdrs/string/strtok.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strtok_r.c b/testsuites/psxtests/psxhdrs/string/strtok_r.c index e872221392..731fdcc85d 100644 --- a/testsuites/psxtests/psxhdrs/string/strtok_r.c +++ b/testsuites/psxtests/psxhdrs/string/strtok_r.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strxfrm.c b/testsuites/psxtests/psxhdrs/string/strxfrm.c index d51a5c12a8..1c1c1ddc1d 100644 --- a/testsuites/psxtests/psxhdrs/string/strxfrm.c +++ b/testsuites/psxtests/psxhdrs/string/strxfrm.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/string/strxfrm_l.c b/testsuites/psxtests/psxhdrs/string/strxfrm_l.c index 5e6208d459..2a3d9f691d 100644 --- a/testsuites/psxtests/psxhdrs/string/strxfrm_l.c +++ b/testsuites/psxtests/psxhdrs/string/strxfrm_l.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include diff --git a/testsuites/psxtests/psxhdrs/utime/utime.c b/testsuites/psxtests/psxhdrs/utime/utime.c index a6801d27c3..6236a84637 100644 --- a/testsuites/psxtests/psxhdrs/utime/utime.c +++ b/testsuites/psxtests/psxhdrs/utime/utime.c @@ -31,7 +31,7 @@ */ #ifdef HAVE_CONFIG_H - #include "config.h" +#include "config.h" #endif #include -- cgit v1.2.3