From a2515e35506e73e8f6422799dea7f4834cd0f558 Mon Sep 17 00:00:00 2001 From: hubertf Date: Sun, 13 Sep 1998 15:27:25 +0000 Subject: mark non-returning functions (PR#6144 by Joseph Myers ) --- tetris/tetris.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tetris/tetris.c') 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, -- cgit v1.2.3