aboutsummaryrefslogtreecommitdiff
path: root/gnu/games
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1994-11-04 02:14:13 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1994-11-04 02:14:13 +0000
commitfb59d6ab65039bba42819e56039849708509b155 (patch)
treec00dfa0d383999b1a34428211808a508dd328ef8 /gnu/games
parentfb21f2fe904e10443a38446f398448d22a376a48 (diff)
Notes
Diffstat (limited to 'gnu/games')
-rw-r--r--gnu/games/chess/Xchess/program.c6
-rw-r--r--gnu/games/chess/Xchess/scrollText.c6
-rw-r--r--gnu/games/chess/Xchess/std.c6
3 files changed, 9 insertions, 9 deletions
diff --git a/gnu/games/chess/Xchess/program.c b/gnu/games/chess/Xchess/program.c
index 59df70c0addc..c1ec0aca64bb 100644
--- a/gnu/games/chess/Xchess/program.c
+++ b/gnu/games/chess/Xchess/program.c
@@ -20,8 +20,8 @@ file named COPYING. Among other things, the copyright notice
and this notice must be preserved on all copies. */
-/* RCS Info: $Revision: 1.1.1.1 $ on $Date: 1993/06/12 14:41:13 $
- * $Source: /a/cvs/386BSD/src/gnu/chess/Xchess/program.c,v $
+/* RCS Info: $Revision: 1.2 $ on $Date: 1994/01/07 11:10:40 $
+ * $Source: /home/ncvs/src/gnu/games/chess/Xchess/program.c,v $
* Copyright (c) 1986 Wayne A. Christopher, U. C. Berkeley CAD Group
* Permission is granted to do anything with this code except sell it
* or remove this message.
@@ -144,7 +144,7 @@ program_get()
/* Do a poll... */
-#ifdef __386BSD__
+#ifdef __FreeBSD__
if (!(i = select(32, &rfd, &wfd, &xfd, &notime))) {
#else
if (!(i = select(32, &rfd, &wfd, &xfd, &notime)) &&
diff --git a/gnu/games/chess/Xchess/scrollText.c b/gnu/games/chess/Xchess/scrollText.c
index 847b41c622af..ace88a722e4e 100644
--- a/gnu/games/chess/Xchess/scrollText.c
+++ b/gnu/games/chess/Xchess/scrollText.c
@@ -624,7 +624,7 @@ struct txtWin *textInfo; /* Text window information */
XFillRectangle(display, textInfo->scrollBar,
textInfo->bgGC,
0, 0, BARSIZE, top-1);
-#ifdef __386BSD__
+#ifdef __FreeBSD__
XFillRectangle(display, textInfo->scrollBar,
DEFAULT_GC, top, BARSIZE - (2*BARBORDER) - 2,
BARSIZE, bottom - top);
@@ -1057,7 +1057,7 @@ int col; /* Color of indicator */
(XID) win);
/* First, draw the arrow */
-#ifdef __386BSD__
+#ifdef __FreeBSD__
XCopyArea(display, textInfo->arrowMap, textInfo->mainWindow,
textInfo->CursorGC,
0, 0, arrow_width, arrow_height,
@@ -1580,7 +1580,7 @@ struct txtWin *textInfo; /* Text window information */
textInfo->endLine = FindEndLine(textInfo, &(textInfo->bottomSpace));
/* Clear out bottom space region */
-#ifdef __386BSD__
+#ifdef __FreeBSD__
XClearArea(display, textInfo->mainWindow,
0, textInfo->h - textInfo->bottomSpace,
textInfo->w, textInfo->bottomSpace, 1);
diff --git a/gnu/games/chess/Xchess/std.c b/gnu/games/chess/Xchess/std.c
index cba72a7e5820..1aa9e8389186 100644
--- a/gnu/games/chess/Xchess/std.c
+++ b/gnu/games/chess/Xchess/std.c
@@ -20,8 +20,8 @@ file named COPYING. Among other things, the copyright notice
and this notice must be preserved on all copies. */
-/* RCS Info: $Revision: 1.1.1.1 $ on $Date: 1993/06/12 14:41:07 $
- * $Source: /a/cvs/386BSD/src/gnu/chess/Xchess/std.c,v $
+/* RCS Info: $Revision: 1.2 $ on $Date: 1994/01/07 11:10:42 $
+ * $Source: /home/ncvs/src/gnu/games/chess/Xchess/std.c,v $
* Copyright (c) 1985 Wayne A. Christopher, U. C. Berkeley CAD Group
*
* Utility routines.
@@ -344,7 +344,7 @@ fatal(s, args)
char *s;
{
fputs("Internal Error: ", stderr);
-#ifndef __386BSD__
+#ifndef __FreeBSD__
_doprnt(s, &args, stderr);
#endif
putc('\n', stderr);