Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/games/gomoku Include <limits.h> instead of <machine/limits.h>.



details:   https://anonhg.NetBSD.org/src/rev/702afa78ba64
branches:  trunk
changeset: 558063:702afa78ba64
user:      jsm <jsm%NetBSD.org@localhost>
date:      Tue Jan 27 20:26:20 2004 +0000

description:
Include <limits.h> instead of <machine/limits.h>.

diffstat:

 games/gomoku/pickmove.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (26 lines):

diff -r 194d4ab4bc9d -r 702afa78ba64 games/gomoku/pickmove.c
--- a/games/gomoku/pickmove.c   Tue Jan 27 20:25:48 2004 +0000
+++ b/games/gomoku/pickmove.c   Tue Jan 27 20:26:20 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: pickmove.c,v 1.10 2003/08/07 09:37:17 agc Exp $        */
+/*     $NetBSD: pickmove.c,v 1.11 2004/01/27 20:26:20 jsm Exp $        */
 
 /*
  * Copyright (c) 1994
@@ -37,14 +37,14 @@
 #if 0
 static char sccsid[] = "@(#)pickmove.c 8.2 (Berkeley) 5/3/95";
 #else
-__RCSID("$NetBSD: pickmove.c,v 1.10 2003/08/07 09:37:17 agc Exp $");
+__RCSID("$NetBSD: pickmove.c,v 1.11 2004/01/27 20:26:20 jsm Exp $");
 #endif
 #endif /* not lint */
 
 #include <stdlib.h>
 #include <string.h>
 #include <curses.h>
-#include <machine/limits.h>
+#include <limits.h>
 
 #include "gomoku.h"
 



Home | Main Index | Thread Index | Old Index