summaryrefslogtreecommitdiffstats
path: root/tetris/tetris.h
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2009-05-25 04:33:53 +0000
committerdholland <dholland@NetBSD.org>2009-05-25 04:33:53 +0000
commit1bd61fb54c34405648439ff594fd701b27dbc4fa (patch)
tree5d099362f463682a5e7098beb2a75a6ccfe101a1 /tetris/tetris.h
parentc18a2b81cd2cb991ea919bb6baa6982899dc590c (diff)
downloadbsdgames-darwin-1bd61fb54c34405648439ff594fd701b27dbc4fa.tar.gz
bsdgames-darwin-1bd61fb54c34405648439ff594fd701b27dbc4fa.tar.zst
bsdgames-darwin-1bd61fb54c34405648439ff594fd701b27dbc4fa.zip
ANSIfy function declarations.
Some object file diffs, but they are harmless. (Mostly they seem to come from internal counters in gcc... and in one case the order of two instructions was harmlessly swapped, which is odd and annoying.)
Diffstat (limited to 'tetris/tetris.h')
-rw-r--r--tetris/tetris.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tetris/tetris.h b/tetris/tetris.h
index 6b3664ba..35a70a3c 100644
--- a/tetris/tetris.h
+++ b/tetris/tetris.h
@@ -1,4 +1,4 @@
-/* $NetBSD: tetris.h,v 1.10 2004/01/27 20:30:30 jsm Exp $ */
+/* $NetBSD: tetris.h,v 1.11 2009/05/25 04:33:53 dholland Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -171,4 +171,4 @@ extern int showpreview;
int fits_in(const struct shape *, int);
void place(const struct shape *, int, int);
-void stop(const char *) __attribute__((__noreturn__));
+void stop(const char *) __dead;