Mon May 25 23:48:32 2009 UTC ()
attribute noreturn -> __dead


(dholland)
diff -r1.14 -r1.15 src/games/atc/extern.h

cvs diff -r1.14 -r1.15 src/games/atc/extern.h (expand / switch to unified diff)

--- src/games/atc/extern.h 2008/01/31 05:19:44 1.14
+++ src/games/atc/extern.h 2009/05/25 23:48:32 1.15
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1/* $NetBSD: extern.h,v 1.14 2008/01/31 05:19:44 dholland Exp $ */ 1/* $NetBSD: extern.h,v 1.15 2009/05/25 23:48:32 dholland Exp $ */
2 2
3/*- 3/*-
4 * Copyright (c) 1990, 1993 4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved. 5 * The Regents of the University of California. All rights reserved.
6 * 6 *
7 * This code is derived from software contributed to Berkeley by 7 * This code is derived from software contributed to Berkeley by
8 * Ed James. 8 * Ed James.
9 * 9 *
10 * Redistribution and use in source and binary forms, with or without 10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions 11 * modification, are permitted provided that the following conditions
12 * are met: 12 * are met:
13 * 1. Redistributions of source code must retain the above copyright 13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer. 14 * notice, this list of conditions and the following disclaimer.
@@ -79,28 +79,28 @@ void draw_all(void); @@ -79,28 +79,28 @@ void draw_all(void);
79void draw_line(WINDOW *, int, int, int, int, const char *); 79void draw_line(WINDOW *, int, int, int, int, const char *);
80void erase_all(void); 80void erase_all(void);
81int getAChar(void); 81int getAChar(void);
82int getcommand(void); 82int getcommand(void);
83int gettoken(void); 83int gettoken(void);
84void init_gr(void); 84void init_gr(void);
85void ioaddstr(int, const char *); 85void ioaddstr(int, const char *);
86void ioclrtobot(void); 86void ioclrtobot(void);
87void ioclrtoeol(int); 87void ioclrtoeol(int);
88void ioerror(int, int, const char *); 88void ioerror(int, int, const char *);
89void iomove(int); 89void iomove(int);
90int list_games(void); 90int list_games(void);
91int log_score(int); 91int log_score(int);
92void log_score_quit(int) __attribute__((__noreturn__)); 92void log_score_quit(int) __dead;
93void loser(const PLANE *, const char *) __attribute__((__noreturn__)); 93void loser(const PLANE *, const char *) __dead;
94int main(int, char *[]); 94int main(int, char *[]);
95char name(const PLANE *); 95char name(const PLANE *);
96int next_plane(void); 96int next_plane(void);
97void noise(void); 97void noise(void);
98int number(int); 98int number(int);
99void open_score_file(void); 99void open_score_file(void);
100void planewin(void); 100void planewin(void);
101int pop(void); 101int pop(void);
102void push(int, int); 102void push(int, int);
103void quit(int); 103void quit(int);
104int read_file(const char *); 104int read_file(const char *);
105void redraw(void); 105void redraw(void);
106void rezero(void); 106void rezero(void);