]> git.pld-linux.org Git - packages/rcs.git/blame - rcs-move-exiting-to-beginning-of-func-decl.patch
- added move-exiting-to-beginning-of-func-decl patch from rcs ml (fixes build in...
[packages/rcs.git] / rcs-move-exiting-to-beginning-of-func-decl.patch
CommitLineData
fdfb677c
JB
1From 260704a9164dd34cf7128d6b1e88075ffa3be054 Mon Sep 17 00:00:00 2001
2From: Thien-Thi Nguyen <address@hidden>
3Date: Thu, 18 Jun 2015 21:25:53 +0200
4Subject: [PATCH] =?UTF-8?q?[C=20slog]=20Move=20=E2=80=98exiting=E2=80=99?=
5 =?UTF-8?q?=20to=20beginning=20of=20func=20decl.?=
6MIME-Version: 1.0
7Content-Type: text/plain; charset=UTF-8
8Content-Transfer-Encoding: 8bit
9
10Apparently, ‘gcc --std=c11’ does not abide the ‘exiting’
11attribute appearing at the end of the func decl.
12Reported by Romain Francoise.
13See also <https://bugs.debian.org/778100>.
14
15* src/b-complain.h (generic_fatal, fatal_syntax, fatal_sys)
16* src/b-fb.h (Ierror, Oerror)
17* src/base.h (unexpected_EOF, thank_you_and_goodnight):
18Move ‘exiting’ attribute to beginning of func decl.
19---
20 src/ChangeLog | 14 ++++++++++++++
21 src/b-complain.h | 10 ++++++----
22 src/b-fb.h | 6 ++++--
23 src/base.h | 8 ++++----
24 4 files changed, 28 insertions(+), 10 deletions(-)
25
26diff --git a/src/ChangeLog b/src/ChangeLog
27index bb31f05..a2ef6a3 100644
28--- a/src/ChangeLog
29+++ b/src/ChangeLog
30@@ -1,3 +1,17 @@
31+2015-06-18 Thien-Thi Nguyen <address@hidden>
32+
33+ [C slog] Move ‘exiting’ to beginning of func decl.
34+
35+ Apparently, ‘gcc --std=c11’ does not abide the ‘exiting’
36+ attribute appearing at the end of the func decl.
37+ Reported by Romain Francoise.
38+ See also <https://bugs.debian.org/778100>.
39+
40+ * b-complain.h (generic_fatal, fatal_syntax, fatal_sys)
41+ * b-fb.h (Ierror, Oerror)
42+ * base.h (unexpected_EOF, thank_you_and_goodnight):
43+ Move ‘exiting’ attribute to beginning of func decl.
44+
45 2015-01-22 Thien-Thi Nguyen <ttn@gnu.org>
46
47 Release: 5.9.4
48diff --git a/src/b-complain.h b/src/b-complain.h
49index 0ffd157..ea0ffc5 100644
50--- a/src/b-complain.h
51+++ b/src/b-complain.h
52@@ -32,12 +32,14 @@ extern void generic_warn (char const *who, char const *fmt, ...)
53 printf_string (2, 3);
54 extern void generic_error (char const *who, char const *fmt, ...)
55 printf_string (2, 3);
56+exiting
57 extern void generic_fatal (char const *who, char const *fmt, ...)
58- printf_string (2, 3) exiting;
59+ printf_string (2, 3);
60+exiting
61 extern void fatal_syntax (size_t lno, char const *fmt, ...)
62- printf_string (2, 3) exiting;
63-extern void fatal_sys (char const *who)
64- exiting;
65+ printf_string (2, 3);
66+exiting
67+extern void fatal_sys (char const *who);
68
69 /* Idioms. Here, prefix P stands for "program" (general operation);
70 M for "manifestation"; R for "repository". */
71diff --git a/src/b-fb.h b/src/b-fb.h
72index c9850e7..bf5eaf8 100644
73--- a/src/b-fb.h
74+++ b/src/b-fb.h
75@@ -21,9 +21,11 @@
76 */
77
78 extern int change_mode (int fd, mode_t mode);
79-extern void Ierror (void) exiting;
80+exiting
81+extern void Ierror (void);
82 extern void testIerror (FILE *f);
83-extern void Oerror (void) exiting;
84+exiting
85+extern void Oerror (void);
86 extern void testOerror (FILE *o);
87 extern FILE *fopen_safer (char const *filename, char const *type);
88 extern void Ozclose (FILE **p);
89diff --git a/src/base.h b/src/base.h
90index 163ee09..5e7a9f8 100644
91--- a/src/base.h
92+++ b/src/base.h
93@@ -755,8 +755,8 @@ int dorewrite (bool lockflag, int changed);
94 int donerewrite (int changed, time_t newRCStime);
95 void ORCSclose (void);
96 void ORCSerror (void);
97-void unexpected_EOF (void)
98- exiting;
99+exiting
100+void unexpected_EOF (void);
101 void initdiffcmd (struct diffcmd *dc);
102 int getdiffcmd (struct fro *finfile, bool delimiter,
103 FILE *foutfile, struct diffcmd *dc);
104@@ -831,8 +831,8 @@ char const *date2str (char const date[datesize],
105 char datebuf[datesize + zonelenmax]);
106
107 /* rcsutil */
108-void thank_you_and_goodnight (int const how)
109- exiting;
110+exiting
111+void thank_you_and_goodnight (int const how);
112 /* These are for ‘thank_you_and_goodnight’. */
113 #define TYAG_ORCSERROR (1 << 3)
114 #define TYAG_DIRTMPUNLINK (1 << 2)
115--
1162.1.0
117
This page took 0.06013 seconds and 4 git commands to generate.