]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - backgammon/teachgammon/teach.c
Negative exit code cleanup: Replace exit(-x) with exit(x).
[bsdgames-darwin.git] / backgammon / teachgammon / teach.c
index 14e96c1bdb56761bf5d758d54fdf8d90fca8681c..4449108994325984e3d065d39132b192f1091995 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: teach.c,v 1.12 2001/02/05 00:23:59 christos Exp $      */
+/*     $NetBSD: teach.c,v 1.13 2001/04/06 11:13:52 wiz Exp $   */
 
 /*
  * Copyright (c) 1980, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
 #if 0
 static char sccsid[] = "@(#)teach.c    8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: teach.c,v 1.12 2001/02/05 00:23:59 christos Exp $");
+__RCSID("$NetBSD: teach.c,v 1.13 2001/04/06 11:13:52 wiz Exp $");
 #endif
 #endif                         /* not lint */
 
@@ -158,5 +158,5 @@ leave()
        fixtty(&old);
        execl(EXEC, "backgammon", "-n", args[0]?args:0, 0);
        writel("Help! Backgammon program is missing\007!!\n");
-       exit(-1);
+       exit(1);
 }