summaryrefslogtreecommitdiffstats
path: root/hangman/getword.c
diff options
context:
space:
mode:
Diffstat (limited to 'hangman/getword.c')
-rw-r--r--hangman/getword.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/hangman/getword.c b/hangman/getword.c
index b57ecab8..c54d293d 100644
--- a/hangman/getword.c
+++ b/hangman/getword.c
@@ -33,7 +33,7 @@
#ifndef lint
/*static char sccsid[] = "from: @(#)getword.c 5.3 (Berkeley) 6/1/90";*/
-static char rcsid[] = "$Id: getword.c,v 1.2 1993/08/01 18:54:25 mycroft Exp $";
+static char rcsid[] = "$Id: getword.c,v 1.3 1994/06/29 21:22:50 deraadt Exp $";
#endif /* not lint */
# include "hangman.h"
@@ -77,17 +77,3 @@ cont: ;
}
*gp = '\0';
}
-
-/*
- * abs:
- * Return the absolute value of an integer
- */
-off_t
-abs(i)
-off_t i;
-{
- if (i < 0)
- return -(off_t) i;
- else
- return (off_t) i;
-}