Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/games/adventure Use __dead.



details:   https://anonhg.NetBSD.org/src/rev/16f166936d34
branches:  trunk
changeset: 746968:16f166936d34
user:      dholland <dholland%NetBSD.org@localhost>
date:      Tue Aug 25 06:58:04 2009 +0000

description:
Use __dead.

diffstat:

 games/adventure/extern.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 465b09795d04 -r 16f166936d34 games/adventure/extern.h
--- a/games/adventure/extern.h  Tue Aug 25 06:56:52 2009 +0000
+++ b/games/adventure/extern.h  Tue Aug 25 06:58:04 2009 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: extern.h,v 1.12 2009/08/25 06:56:52 dholland Exp $     */
+/*     $NetBSD: extern.h,v 1.13 2009/08/25 06:58:04 dholland Exp $     */
 
 /*
  * Copyright (c) 1997 Christos Zoulas.  All rights reserved.
@@ -37,7 +37,7 @@
 
 /* done.c */
 int score(void);
-void done(int) __attribute__((__noreturn__));
+void done(int) __dead;
 void die(int);
 
 /* init.c */
@@ -75,7 +75,7 @@
 int pct(int);
 int fdwarf(void);
 int march(void);
-void bug(int) __attribute__((__noreturn__));
+void bug(int) __dead;
 void checkhints(void);
 int trsay(void);
 int trtake(void);



Home | Main Index | Thread Index | Old Index