From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1499) id 8F561386100B; Thu, 2 Sep 2021 21:06:05 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 8F561386100B Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Gaius Mulley To: gcc-cvs@gcc.gnu.org Subject: [gcc(refs/users/gaius/heads/devel/modula-2)] Replaced include header with "foo.h". X-Act-Checkin: gcc X-Git-Author: Gaius Mulley X-Git-Refname: refs/users/gaius/heads/devel/modula-2 X-Git-Oldrev: 09dc728bdcfed26df3ac1682f6bd10b85b8d4568 X-Git-Newrev: dad2b5ec93d68e5d3970f14a18becdef09df3530 Message-Id: <20210902210605.8F561386100B@sourceware.org> Date: Thu, 2 Sep 2021 21:06:05 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2021 21:06:05 -0000 https://gcc.gnu.org/g:dad2b5ec93d68e5d3970f14a18becdef09df3530 commit dad2b5ec93d68e5d3970f14a18becdef09df3530 Author: Gaius Mulley Date: Thu Sep 2 22:04:01 2021 +0100 Replaced include header with "foo.h". 2021-09-02 Gaius Mulley libgm2/ChangeLog: * libm2iso/ErrnoCategory.c: Replaced include with include "errno.h" and with "sys/errno.h". * libm2iso/wrapsock.c: Replaced include with include "sys/types.h", with "sys/socket.h", with "netinet/in.h", with "netdb.h", with "unistd.h", with "signal.h", with "sys/errno.h", with "errno.h", with "malloc.h", with "string.h", with "stdlib.h". * libm2iso/wraptime.c: Replaced include with "sys/types.h", with "sys/time.h", with "time.h", with "malloc.h", with "limits.h". Signed-off-by: Gaius Mulley Diff: --- libgm2/libm2iso/ErrnoCategory.c | 4 ++-- libgm2/libm2iso/wrapsock.c | 24 ++++++++++++------------ libgm2/libm2iso/wraptime.c | 10 +++++----- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/libgm2/libm2iso/ErrnoCategory.c b/libgm2/libm2iso/ErrnoCategory.c index 7f02715b391..4af8834547c 100644 --- a/libgm2/libm2iso/ErrnoCategory.c +++ b/libgm2/libm2iso/ErrnoCategory.c @@ -29,11 +29,11 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include "ChanConsts.h" #if defined(HAVE_ERRNO_H) -#include +#include "errno.h" #endif #if defined(HAVE_SYS_ERRNO_H) -#include +#include "sys/errno.h" #endif #if !defined(FALSE) diff --git a/libgm2/libm2iso/wrapsock.c b/libgm2/libm2iso/wrapsock.c index 2e26153b65c..805c6a9c3c2 100644 --- a/libgm2/libm2iso/wrapsock.c +++ b/libgm2/libm2iso/wrapsock.c @@ -27,51 +27,51 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include "config.h" #if defined(HAVE_SYS_TYPES_H) -#include +#include "sys/types.h" #endif #if defined(HAVE_SYS_SOCKET_H) -#include +#include "sys/socket.h" #endif #if defined(HAVE_NETINET_IN_H) -#include +#include "netinet/in.h" #endif #if defined(HAVE_NETDB_H) -#include +#include "netdb.h" #endif #if defined(HAVE_UNISTD_H) -#include +#include "unistd.h" #endif #if defined(HAVE_SIGNAL_H) -#include +#include "signal.h" #endif #if defined(HAVE_SYS_ERRNO_H) -#include +#include "sys/errno.h" #endif #if defined(HAVE_ERRNO_H) -#include +#include "errno.h" #endif #if defined(HAVE_MALLOC_H) -#include +#include "malloc.h" #endif #if defined(HAVE_MALLOC_H) -#include +#include "signal.h" #endif #if defined(HAVE_STRING_H) -#include +#include "string.h" #endif #if defined(HAVE_STDLIB_H) -#include +#include "stdlib.h" #endif #if !defined(TRUE) diff --git a/libgm2/libm2iso/wraptime.c b/libgm2/libm2iso/wraptime.c index 05911eea4e3..61e1b5312f6 100644 --- a/libgm2/libm2iso/wraptime.c +++ b/libgm2/libm2iso/wraptime.c @@ -27,23 +27,23 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include "config.h" #if defined(HAVE_SYS_TYPES_H) -#include +#include "sys/types.h" #endif #if defined(HAVE_SYS_TIME_H) -#include +#include "sys/time.h" #endif #if defined(HAVE_TIME_H) -#include +#include "time.h" #endif #if defined(HAVE_MALLOC_H) -#include +#include "malloc.h" #endif #if defined(HAVE_LIMITS_H) -#include +#include "limits.h" #endif #if !defined(TRUE)