public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Gaius Mulley <gaius@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc(refs/users/gaius/heads/devel/modula-2)] Replaced include header <foo.h> with "foo.h".
Date: Thu,  2 Sep 2021 21:06:05 +0000 (GMT)	[thread overview]
Message-ID: <20210902210605.8F561386100B@sourceware.org> (raw)

https://gcc.gnu.org/g:dad2b5ec93d68e5d3970f14a18becdef09df3530

commit dad2b5ec93d68e5d3970f14a18becdef09df3530
Author: Gaius Mulley <gaius.mulley@southwales.ac.uk>
Date:   Thu Sep 2 22:04:01 2021 +0100

    Replaced include header <foo.h> with "foo.h".
    
    2021-09-02  Gaius Mulley  <gaius.mulley@southwales.ac.uk>
    
    libgm2/ChangeLog:
    
            * libm2iso/ErrnoCategory.c: Replaced include <errno.h> with
            include "errno.h" and <sys/errno.h> with "sys/errno.h".
            * libm2iso/wrapsock.c: Replaced include <sys/types.h> with
            include "sys/types.h", <sys/socket.h> with "sys/socket.h",
            <netinet/in.h> with "netinet/in.h", <netdb.h> with "netdb.h",
            <unistd.h> with "unistd.h", <signal.h> with "signal.h",
            <sys/errno.h> with "sys/errno.h", <errno.h> with "errno.h",
            <malloc.h> with "malloc.h", <string.h> with "string.h",
            <stdlib.h> with "stdlib.h".
            * libm2iso/wraptime.c: Replaced include <sys/types.h> with
            "sys/types.h", <sys/time.h> with "sys/time.h", <time.h> with
            "time.h", <malloc.h> with "malloc.h", <limits.h> with "limits.h".
    
    Signed-off-by: Gaius Mulley <gaius.mulley@southwales.ac.uk>

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 <errno.h>
+#include "errno.h"
 #endif
 
 #if defined(HAVE_SYS_ERRNO_H)
-#include <sys/errno.h>
+#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 <sys/types.h>
+#include "sys/types.h"
 #endif
 
 #if defined(HAVE_SYS_SOCKET_H)
-#include <sys/socket.h>
+#include "sys/socket.h"
 #endif
 
 #if defined(HAVE_NETINET_IN_H)
-#include <netinet/in.h>
+#include "netinet/in.h"
 #endif
 
 #if defined(HAVE_NETDB_H)
-#include <netdb.h>
+#include "netdb.h"
 #endif
 
 #if defined(HAVE_UNISTD_H)
-#include <unistd.h>
+#include "unistd.h"
 #endif
 
 #if defined(HAVE_SIGNAL_H)
-#include <signal.h>
+#include "signal.h"
 #endif
 
 #if defined(HAVE_SYS_ERRNO_H)
-#include <sys/errno.h>
+#include "sys/errno.h"
 #endif
 
 #if defined(HAVE_ERRNO_H)
-#include <errno.h>
+#include "errno.h"
 #endif
 
 #if defined(HAVE_MALLOC_H)
-#include <malloc.h>
+#include "malloc.h"
 #endif
 
 #if defined(HAVE_MALLOC_H)
-#include <signal.h>
+#include "signal.h"
 #endif
 
 #if defined(HAVE_STRING_H)
-#include <string.h>
+#include "string.h"
 #endif
 
 #if defined(HAVE_STDLIB_H)
-#include <stdlib.h>
+#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 <sys/types.h>
+#include "sys/types.h"
 #endif
 
 #if defined(HAVE_SYS_TIME_H)
-#include <sys/time.h>
+#include "sys/time.h"
 #endif
 
 #if defined(HAVE_TIME_H)
-#include <time.h>
+#include "time.h"
 #endif
 
 #if defined(HAVE_MALLOC_H)
-#include <malloc.h>
+#include "malloc.h"
 #endif
 
 #if defined(HAVE_LIMITS_H)
-#include <limits.h>
+#include "limits.h"
 #endif
 
 #if !defined(TRUE)


                 reply	other threads:[~2021-09-02 21:06 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210902210605.8F561386100B@sourceware.org \
    --to=gaius@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).