Module Name:    src
Committed By:   dholland
Date:           Thu Jun  4 05:52:30 UTC 2009

Modified Files:
        src/games/gomoku: gomoku.h

Log Message:
attribute noreturn -> __dead


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/games/gomoku/gomoku.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/games/gomoku/gomoku.h
diff -u src/games/gomoku/gomoku.h:1.11 src/games/gomoku/gomoku.h:1.12
--- src/games/gomoku/gomoku.h:1.11	Thu Jun  4 05:43:29 2009
+++ src/games/gomoku/gomoku.h	Thu Jun  4 05:52:30 2009
@@ -1,4 +1,4 @@
-/*	$NetBSD: gomoku.h,v 1.11 2009/06/04 05:43:29 dholland Exp $	*/
+/*	$NetBSD: gomoku.h,v 1.12 2009/06/04 05:52:30 dholland Exp $	*/
 
 /*
  * Copyright (c) 1994
@@ -272,11 +272,11 @@
 void	cursfini(void);
 void	cursinit(void);
 void	bdwho(int);
-void	panic(const char *) __attribute__((__noreturn__));
+void	panic(const char *) __dead;
 void	glog(const char *);
 void	dlog(const char *);
-void	quit(void) __attribute__((__noreturn__));
-void	quitsig(int) __attribute__((__noreturn__));
+void	quit(void) __dead;
+void	quitsig(int) __dead;
 void	whatsup(int);
 int	readinput(FILE *);
 const char   *stoc(int);

Reply via email to