summaryrefslogtreecommitdiffstats
path: root/hangman
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2011-08-26 06:18:16 +0000
committerdholland <dholland@NetBSD.org>2011-08-26 06:18:16 +0000
commit9e7fd816e02e66962d482b02209f112e1d5789fc (patch)
treea17f6ea5c647e0ec62bfe7ecad4192e0335b121b /hangman
parent9969175ad6caac230e2fee18f6f64f2be17a1fa6 (diff)
downloadbsdgames-darwin-9e7fd816e02e66962d482b02209f112e1d5789fc.tar.gz
bsdgames-darwin-9e7fd816e02e66962d482b02209f112e1d5789fc.tar.zst
bsdgames-darwin-9e7fd816e02e66962d482b02209f112e1d5789fc.zip
Use __dead and __printflike instead of __attribute__.
Diffstat (limited to 'hangman')
-rw-r--r--hangman/hangman.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hangman/hangman.h b/hangman/hangman.h
index ba7d8d0f..1b24ba13 100644
--- a/hangman/hangman.h
+++ b/hangman/hangman.h
@@ -1,4 +1,4 @@
-/* $NetBSD: hangman.h,v 1.13 2004/01/27 20:30:29 jsm Exp $ */
+/* $NetBSD: hangman.h,v 1.14 2011/08/26 06:18:17 dholland Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -81,7 +81,7 @@ extern FILE *Dict;
extern off_t Dict_size;
-void die(int) __attribute__((__noreturn__));
+void die(int) __dead;
void endgame(void);
int main(int, char *[]);
void getguess(void);