Module Name: src
Committed By: jruoho
Date: Wed Apr 13 06:35:48 UTC 2011
Modified Files:
src/lib/libc/stdlib: imaxabs.3
Log Message:
Fix obvious bug.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/lib/libc/stdlib/imaxabs.3
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/stdlib/imaxabs.3
diff -u src/lib/libc/stdlib/imaxabs.3:1.2 src/lib/libc/stdlib/imaxabs.3:1.3
--- src/lib/libc/stdlib/imaxabs.3:1.2 Sun Mar 21 13:39:51 2010
+++ src/lib/libc/stdlib/imaxabs.3 Wed Apr 13 06:35:48 2011
@@ -1,4 +1,4 @@
-.\" $NetBSD: imaxabs.3,v 1.2 2010/03/21 13:39:51 jruoho Exp $
+.\" $NetBSD: imaxabs.3,v 1.3 2011/04/13 06:35:48 jruoho Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -33,7 +33,7 @@
.\"
.\" from: @(#)labs.3 8.1 (Berkeley) 6/4/93
.\"
-.Dd March 6, 2000
+.Dd April 13, 2011
.Dt IMAXABS 3
.Os
.Sh NAME
@@ -44,7 +44,7 @@
.Sh SYNOPSIS
.In inttypes.h
.Ft intmax_t
-.Fn imaxabs "intmax_t i"
+.Fn imaxabs "intmax_t x"
.Sh DESCRIPTION
The
.Fn imaxabs
@@ -52,7 +52,7 @@
returns the absolute value of the
.Vt imaxint_t
integer
-.Ar j .
+.Ar x .
.Sh SEE ALSO
.Xr abs 3 ,
.Xr cabs 3 ,