Module Name:    src
Committed By:   dholland
Date:           Mon May 25 00:07:14 UTC 2009

Modified Files:
        src/games/trek: trek.h

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


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/games/trek/trek.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/trek/trek.h
diff -u src/games/trek/trek.h:1.16 src/games/trek/trek.h:1.17
--- src/games/trek/trek.h:1.16	Sun May 24 23:20:22 2009
+++ src/games/trek/trek.h	Mon May 25 00:07:14 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: trek.h,v 1.16 2009/05/24 23:20:22 dholland Exp $	*/
+/*	$NetBSD: trek.h,v 1.17 2009/05/25 00:07:14 dholland Exp $	*/
 
 /*
  * Copyright (c) 1980, 1993
@@ -447,7 +447,7 @@
 void klmove(int);
 
 /* lose.c */
-void lose(int) __attribute__((__noreturn__));
+void lose(int) __dead;
 
 /* lrscan.c */
 void lrscan(int);
@@ -465,8 +465,8 @@
 void phaser(int);
 
 /* play.c */
-void myreset(int) __attribute__((__noreturn__));
-void play(void) __attribute__((__noreturn__));
+void myreset(int) __dead;
+void play(void) __dead;
 
 /* ram.c */
 void ram(int, int );
@@ -517,4 +517,4 @@
 void warp(int, int, double);
 
 /* win.c */
-void win(void) __attribute__((__noreturn__));
+void win(void) __dead;

Reply via email to