]> andersk Git - openssh.git/commitdiff
- (dtucker) [defines.h] Define __dead if not already defined.
authordtucker <dtucker>
Tue, 22 Jun 2004 03:27:16 +0000 (03:27 +0000)
committerdtucker <dtucker>
Tue, 22 Jun 2004 03:27:16 +0000 (03:27 +0000)
ChangeLog
defines.h

index dadca27f5bd1175af91ec8e74b3ff5df8539d654..b324fc2c9ea0777be79a46a480c5b8d0028b8e3f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -38,6 +38,7 @@
      don't show .files by default in ls, add -a option to turn them back on;
      ok markus
  - (dtucker) [monitor.c] Fix Portable-specific -Wshadow warnings on "socket".
+ - (dtucker) [defines.h] Define __dead if not already defined.
 
 20040620
  - (tim) [configure.ac Makefile.in] Only change TEST_SHELL on broken platforms.
index 93b5c87d0023bfe1499f0c556400b5e0820fa46a..b21235fddc5e9d53a2d434ab2f64c6d58e228313 100644 (file)
--- a/defines.h
+++ b/defines.h
@@ -424,6 +424,10 @@ struct winsize {
 # define __attribute__(x)
 #endif /* !defined(__GNUC__) || (__GNUC__ < 2) */
 
+#ifndef __dead
+# define __dead        __attribute__((noreturn))
+#endif
+
 /* *-*-nto-qnx doesn't define this macro in the system headers */
 #ifdef MISSING_HOWMANY
 # define howmany(x,y)  (((x)+((y)-1))/(y))
This page took 0.296012 seconds and 5 git commands to generate.