summaryrefslogtreecommitdiffstats
path: root/sail/misc.c
diff options
context:
space:
mode:
authorjsm <jsm@NetBSD.org>2004-02-08 00:32:48 +0000
committerjsm <jsm@NetBSD.org>2004-02-08 00:32:48 +0000
commit80c0ba03f49e892862ae80118ab5455c8256b0ab (patch)
tree800abbf3413939944e6c72d77c5ec8577fb1ba9b /sail/misc.c
parent1f37325e997440c903f6a13aee82c9040608bf2f (diff)
downloadbsdgames-darwin-80c0ba03f49e892862ae80118ab5455c8256b0ab.tar.gz
bsdgames-darwin-80c0ba03f49e892862ae80118ab5455c8256b0ab.zip
Use standard C abs function rather than local macro.
Diffstat (limited to 'sail/misc.c')
-rw-r--r--sail/misc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sail/misc.c b/sail/misc.c
index 4b33197d..d576b35e 100644
--- a/sail/misc.c
+++ b/sail/misc.c
@@ -1,4 +1,4 @@
-/* $NetBSD: misc.c,v 1.13 2003/08/07 09:37:43 agc Exp $ */
+/* $NetBSD: misc.c,v 1.14 2004/02/08 00:32:48 jsm Exp $ */
/*
* Copyright (c) 1983, 1993
@@ -34,13 +34,14 @@
#if 0
static char sccsid[] = "@(#)misc.c 8.2 (Berkeley) 4/28/95";
#else
-__RCSID("$NetBSD: misc.c,v 1.13 2003/08/07 09:37:43 agc Exp $");
+__RCSID("$NetBSD: misc.c,v 1.14 2004/02/08 00:32:48 jsm Exp $");
#endif
#endif /* not lint */
#include <ctype.h>
#include <stdio.h>
#include <unistd.h>
+#include <stdlib.h>
#include <string.h>
#include "extern.h"
#include "pathnames.h"