summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/qabs.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/stdlib/qabs.c')
-rw-r--r--lib/libc/stdlib/qabs.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/stdlib/qabs.c b/lib/libc/stdlib/qabs.c
index 296d2d47429..4c561b33516 100644
--- a/lib/libc/stdlib/qabs.c
+++ b/lib/libc/stdlib/qabs.c
@@ -28,14 +28,13 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: qabs.c,v 1.3 2003/06/02 20:18:38 millert Exp $";
+static char *rcsid = "$OpenBSD: qabs.c,v 1.4 2005/03/30 18:51:49 pat Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h>
quad_t
-qabs(j)
- quad_t j;
+qabs(quad_t j)
{
return(j < 0 ? -j : j);
}