1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
diff -urN watchdog-5.2/include/sundries.h watchdog-5.2-modified/include/sundries.h
--- watchdog-5.2/include/sundries.h 1998-09-10 10:19:11.000000000 -0500
+++ watchdog-5.2-modified/include/sundries.h 2002-10-29 10:30:49.000000000 -0600
@@ -46,16 +46,7 @@
char *xstrconcat3 (const char *, const char *, const char *);
char *xstrconcat4 (const char *, const char *, const char *, const char *);
-/* Here is some serious cruft. */
-#ifdef __GNUC__
-#if defined(__GNUC_MINOR__) && __GNUC__ == 2 && __GNUC_MINOR__ >= 5
void die (int errcode, const char *fmt, ...) __attribute__ ((noreturn));
-#else /* GNUC < 2.5 */
-void volatile die (int errcode, const char *fmt, ...);
-#endif /* GNUC < 2.5 */
-#else /* !__GNUC__ */
-void die (int errcode, const char *fmt, ...);
-#endif /* !__GNUC__ */
#ifdef HAVE_NFS
int nfsmount (const char *spec, const char *node, int *flags,
|