diff options
| author | ryoon <ryoon@NetBSD.org> | 2023-01-06 19:02:02 +0000 |
|---|---|---|
| committer | ryoon <ryoon@NetBSD.org> | 2023-01-06 19:02:02 +0000 |
| commit | d1f6f19f6d79d5f10bd9e0cfb3ea4f7e6b23aba2 (patch) | |
| tree | 202b5cfa266da85c34d57b156e28a92f235a4ebf /games | |
| parent | c415ce7e183a8c2eb1c148c0898a6c2aa7056333 (diff) | |
Define yes as extern veriable to fix build
PR bin/57164 is insufficient.
Diffstat (limited to 'games')
| -rw-r--r-- | games/cribbage/cribbage.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games/cribbage/cribbage.h b/games/cribbage/cribbage.h index 6abe69167b7..55b16d00480 100644 --- a/games/cribbage/cribbage.h +++ b/games/cribbage/cribbage.h @@ -1,4 +1,4 @@ -/* $NetBSD: cribbage.h,v 1.17 2012/10/13 20:36:06 dholland Exp $ */ +/* $NetBSD: cribbage.h,v 1.18 2023/01/06 19:02:02 ryoon Exp $ */ /* * Copyright (c) 1980, 1993 @@ -53,6 +53,7 @@ extern BOOLEAN iwon; /* if comp won last */ extern BOOLEAN explain; /* player mistakes explained */ extern BOOLEAN rflag; /* if all cuts random */ extern BOOLEAN quiet; /* if suppress random mess */ +extern BOOLEAN yes; /* default 'y' to "Another game?" */ extern char explan[]; /* string for explanation */ |
