summaryrefslogtreecommitdiffstats
path: root/cribbage/cribbage.h
diff options
context:
space:
mode:
authorroy <roy@NetBSD.org>2009-07-13 19:05:39 +0000
committerroy <roy@NetBSD.org>2009-07-13 19:05:39 +0000
commit1a8f73c921695fb365fd62992e90e8d40e94343a (patch)
tree447f607459addcce932c00ca52c03ac9e462c321 /cribbage/cribbage.h
parent1f35120ec096783ec21160ac00f22c0fb221a918 (diff)
downloadbsdgames-darwin-1a8f73c921695fb365fd62992e90e8d40e94343a.tar.gz
bsdgames-darwin-1a8f73c921695fb365fd62992e90e8d40e94343a.tar.zst
bsdgames-darwin-1a8f73c921695fb365fd62992e90e8d40e94343a.zip
Rename internal getline() function to get_line() so it does
conflict with the soon to be added getline(3) libc function.
Diffstat (limited to 'cribbage/cribbage.h')
-rw-r--r--cribbage/cribbage.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cribbage/cribbage.h b/cribbage/cribbage.h
index 0cd1e792..cfe2a7fb 100644
--- a/cribbage/cribbage.h
+++ b/cribbage/cribbage.h
@@ -1,4 +1,4 @@
-/* $NetBSD: cribbage.h,v 1.13 2005/07/02 08:32:32 jmc Exp $ */
+/* $NetBSD: cribbage.h,v 1.14 2009/07/13 19:05:40 roy Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -76,7 +76,7 @@ int eq(CARD, CARD);
int fifteens(const CARD [], int);
void game(void);
void gamescore(void);
-char *getline(void);
+char *get_line(void);
int getuchar(void);
int incard(CARD *);
int infrom(const CARD [], int, const char *);