diff -Naur rcs-5.9.4.old/src/b-complain.h rcs-5.9.4.new/src/b-complain.h
old
|
new
|
|
32 | 32 | printf_string (2, 3); |
33 | 33 | extern void generic_error (char const *who, char const *fmt, ...) |
34 | 34 | printf_string (2, 3); |
35 | | extern void generic_fatal (char const *who, char const *fmt, ...) |
36 | | printf_string (2, 3) exiting; |
37 | | extern void fatal_syntax (size_t lno, char const *fmt, ...) |
38 | | printf_string (2, 3) exiting; |
39 | | extern void fatal_sys (char const *who) |
40 | | exiting; |
| 35 | exiting extern void generic_fatal (char const *who, char const *fmt, ...) |
| 36 | printf_string (2, 3); |
| 37 | exiting extern void fatal_syntax (size_t lno, char const *fmt, ...) |
| 38 | printf_string (2, 3); |
| 39 | exiting extern void fatal_sys (char const *who); |
41 | 40 | |
42 | 41 | /* Idioms. Here, prefix P stands for "program" (general operation); |
43 | 42 | M for "manifestation"; R for "repository". */ |
diff -Naur rcs-5.9.4.old/src/b-fb.h rcs-5.9.4.new/src/b-fb.h
old
|
new
|
|
21 | 21 | */ |
22 | 22 | |
23 | 23 | extern int change_mode (int fd, mode_t mode); |
24 | | extern void Ierror (void) exiting; |
| 24 | exiting extern void Ierror (void); |
25 | 25 | extern void testIerror (FILE *f); |
26 | | extern void Oerror (void) exiting; |
| 26 | exiting extern void Oerror (void); |
27 | 27 | extern void testOerror (FILE *o); |
28 | 28 | extern FILE *fopen_safer (char const *filename, char const *type); |
29 | 29 | extern void Ozclose (FILE **p); |
diff -Naur rcs-5.9.4.old/src/base.h rcs-5.9.4.new/src/base.h
old
|
new
|
|
754 | 754 | int donerewrite (int changed, time_t newRCStime); |
755 | 755 | void ORCSclose (void); |
756 | 756 | void ORCSerror (void); |
757 | | void unexpected_EOF (void) |
758 | | exiting; |
| 757 | exiting void unexpected_EOF (void); |
759 | 758 | void initdiffcmd (struct diffcmd *dc); |
760 | 759 | int getdiffcmd (struct fro *finfile, bool delimiter, |
761 | 760 | FILE *foutfile, struct diffcmd *dc); |
… |
… |
|
830 | 829 | char datebuf[datesize + zonelenmax]); |
831 | 830 | |
832 | 831 | /* rcsutil */ |
833 | | void thank_you_and_goodnight (int const how) |
834 | | exiting; |
| 832 | exiting void thank_you_and_goodnight (int const how); |
835 | 833 | /* These are for ‘thank_you_and_goodnight’. */ |
836 | 834 | #define TYAG_ORCSERROR (1 << 3) |
837 | 835 | #define TYAG_DIRTMPUNLINK (1 << 2) |