summaryrefslogtreecommitdiffstats
path: root/atc
diff options
context:
space:
mode:
authorhubertf <hubertf@NetBSD.org>1998-09-13 15:27:25 +0000
committerhubertf <hubertf@NetBSD.org>1998-09-13 15:27:25 +0000
commita2515e35506e73e8f6422799dea7f4834cd0f558 (patch)
tree04fd3cbcf147e619b8b2e6291fffb4c4a5b8a591 /atc
parent6d7ed08d8c880aa89994f5978dff0cef8d6aaeb3 (diff)
downloadbsdgames-darwin-a2515e35506e73e8f6422799dea7f4834cd0f558.tar.gz
bsdgames-darwin-a2515e35506e73e8f6422799dea7f4834cd0f558.tar.zst
bsdgames-darwin-a2515e35506e73e8f6422799dea7f4834cd0f558.zip
mark non-returning functions (PR#6144 by Joseph Myers <jsm28@cam.ac.uk>)
Diffstat (limited to 'atc')
-rw-r--r--atc/extern.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/atc/extern.h b/atc/extern.h
index e233c1c8..397c500b 100644
--- a/atc/extern.h
+++ b/atc/extern.h
@@ -1,4 +1,4 @@
-/* $NetBSD: extern.h,v 1.5 1997/10/10 02:07:06 lukem Exp $ */
+/* $NetBSD: extern.h,v 1.6 1998/09/13 15:27:26 hubertf Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -89,8 +89,8 @@ void ioerror __P((int, int, char *));
void iomove __P((int));
int list_games __P((void));
int log_score __P((int));
-void log_score_quit __P((int));
-void loser __P((PLANE *, char *));
+void log_score_quit __P((int)) __attribute__((__noreturn__));
+void loser __P((PLANE *, char *)) __attribute__((__noreturn__));
int main __P((int, char *[]));
char name __P((PLANE *));
int next_plane __P((void));