[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, feature/zOS-try2, updated. gawk-4.1.0-74
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, feature/zOS-try2, updated. gawk-4.1.0-742-g5e54751 |
Date: |
Wed, 26 Aug 2015 18:57:54 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, feature/zOS-try2 has been updated
via 5e547510dfad2ce5f00e2f495b054c4331c62dfc (commit)
from cd2504da556b8bb61b56a34727ef4ce5195ff9a0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=5e547510dfad2ce5f00e2f495b054c4331c62dfc
commit 5e547510dfad2ce5f00e2f495b054c4331c62dfc
Author: Arnold D. Robbins <address@hidden>
Date: Wed Aug 26 21:57:28 2015 +0300
Move include of sys/select.h to io.c.
diff --git a/awk.h b/awk.h
index 1a7dc24..c74c688 100644
--- a/awk.h
+++ b/awk.h
@@ -152,10 +152,6 @@ typedef int off_t;
#include <strings.h>
#endif /* HAVE_STRINGS_H */
-#ifdef HAVE_SYS_SELECT_H
-#include <sys/select.h>
-#endif /* HAVE_SYS_SELECT_H */
-
#if HAVE_UNISTD_H
#include <unistd.h>
#endif /* HAVE_UNISTD_H */
diff --git a/io.c b/io.c
index 8ebce69..f6b5031 100644
--- a/io.c
+++ b/io.c
@@ -76,6 +76,10 @@
#include <netdb.h>
#endif /* HAVE_NETDB_H */
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif /* HAVE_SYS_SELECT_H */
+
#ifndef HAVE_GETADDRINFO
#include "missing_d/getaddrinfo.h"
#endif
-----------------------------------------------------------------------
Summary of changes:
awk.h | 4 ----
io.c | 4 ++++
2 files changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, feature/zOS-try2, updated. gawk-4.1.0-742-g5e54751,
Arnold Robbins <=