public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc/devel/modula-2] Replaced include header <foo.h> with "foo.h".
@ 2021-09-02 15:28 Gaius Mulley
  0 siblings, 0 replies; only message in thread
From: Gaius Mulley @ 2021-09-02 15:28 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:74896c9b8f821f8c943061edb3232910b76dacc6

commit 74896c9b8f821f8c943061edb3232910b76dacc6
Author: Gaius Mulley <gaius.mulley@southwales.ac.uk>
Date:   Thu Sep 2 16:25: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)


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-09-02 15:28 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-02 15:28 [gcc/devel/modula-2] Replaced include header <foo.h> with "foo.h" Gaius Mulley

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).