Module Name:    src
Committed By:   dholland
Date:           Sat Jul  4 03:27:57 UTC 2009

Modified Files:
        src/games/hunt/huntd: hunt.h

Log Message:
__attribute__((__noreturn__)) -> __dead


To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/games/hunt/huntd/hunt.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/hunt/huntd/hunt.h
diff -u src/games/hunt/huntd/hunt.h:1.12 src/games/hunt/huntd/hunt.h:1.13
--- src/games/hunt/huntd/hunt.h:1.12	Mon Jan 28 03:23:29 2008
+++ src/games/hunt/huntd/hunt.h	Sat Jul  4 03:27:57 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: hunt.h,v 1.12 2008/01/28 03:23:29 dholland Exp $	*/
+/*	$NetBSD: hunt.h,v 1.13 2009/07/04 03:27:57 dholland Exp $	*/
 
 /*
  * Copyright (c) 1983-2003, Regents of the University of California.
@@ -472,10 +472,10 @@
 void		stmonitor(PLAYER *);
 void		stplayer(PLAYER *, int);
 char		translate(char);
-SIGNAL_TYPE	cleanup(int) __attribute__((__noreturn__));
+SIGNAL_TYPE	cleanup(int) __dead;
 SIGNAL_TYPE	intr(int);
 SIGNAL_TYPE	sigalrm(int);
-SIGNAL_TYPE	sigemt(int) __attribute__((__noreturn__));
-SIGNAL_TYPE	sigterm(int) __attribute__((__noreturn__));
-SIGNAL_TYPE	sigusr1(int) __attribute__((__noreturn__));
+SIGNAL_TYPE	sigemt(int) __dead;
+SIGNAL_TYPE	sigterm(int) __dead;
+SIGNAL_TYPE	sigusr1(int) __dead;
 SIGNAL_TYPE	tstp(int);

Reply via email to