diff options
| author | hubertf <hubertf@NetBSD.org> | 1998-09-13 15:27:25 +0000 |
|---|---|---|
| committer | hubertf <hubertf@NetBSD.org> | 1998-09-13 15:27:25 +0000 |
| commit | a2515e35506e73e8f6422799dea7f4834cd0f558 (patch) | |
| tree | 04fd3cbcf147e619b8b2e6291fffb4c4a5b8a591 /tetris/tetris.c | |
| parent | 6d7ed08d8c880aa89994f5978dff0cef8d6aaeb3 (diff) | |
| download | bsdgames-darwin-a2515e35506e73e8f6422799dea7f4834cd0f558.tar.gz bsdgames-darwin-a2515e35506e73e8f6422799dea7f4834cd0f558.zip | |
mark non-returning functions (PR#6144 by Joseph Myers <jsm28@cam.ac.uk>)
Diffstat (limited to 'tetris/tetris.c')
| -rw-r--r-- | tetris/tetris.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tetris/tetris.c b/tetris/tetris.c index 0b08ddab..b2f0006c 100644 --- a/tetris/tetris.c +++ b/tetris/tetris.c @@ -1,4 +1,4 @@ -/* $NetBSD: tetris.c,v 1.4 1998/08/10 02:25:45 perry Exp $ */ +/* $NetBSD: tetris.c,v 1.5 1998/09/13 15:27:30 hubertf Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -64,8 +64,8 @@ __COPYRIGHT("@(#) Copyright (c) 1992, 1993\n\ static void elide __P((void)); static void setup_board __P((void)); int main __P((int, char **)); - void onintr __P((int)); - void usage __P((void)); + void onintr __P((int)) __attribute__((__noreturn__)); + void usage __P((void)) __attribute__((__noreturn__)); /* * Set up the initial board. The bottom display row is completely set, |
