summaryrefslogtreecommitdiffstats
path: root/mille
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 /mille
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 'mille')
-rw-r--r--mille/mille.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mille/mille.h b/mille/mille.h
index 205bdab3..416e9f0d 100644
--- a/mille/mille.h
+++ b/mille/mille.h
@@ -1,4 +1,4 @@
-/* $NetBSD: mille.h,v 1.8 1998/07/26 16:11:39 mycroft Exp $ */
+/* $NetBSD: mille.h,v 1.9 1998/09/13 15:27:29 hubertf Exp $ */
/*
* Copyright (c) 1982, 1993
@@ -231,7 +231,7 @@ int canplay __P((PLAY *, PLAY *, CARD));
int check_ext __P((bool));
void check_go __P((void));
void check_more __P((void));
-void die __P((int));
+void die __P((int)) __attribute__((__noreturn__));
void domove __P((void));
bool error __P((const char *, ...));
void extrapolate __P((PLAY *));