From fa05569ce81c833c27fc42c2ab0b85a1a2942202 Mon Sep 17 00:00:00 2001 From: mccallum Date: Sun, 31 Mar 1996 23:15:12 +0000 Subject: [PATCH] (ABS): Remove macro; now defined in objects/stdobjects.h. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1328 72102866-910b-0410-8b05-ffd578937521 --- Source/Random.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Random.m b/Source/Random.m index 12fb5b22f..2825b7a18 100644 --- a/Source/Random.m +++ b/Source/Random.m @@ -1,5 +1,5 @@ /* Implementation Objective-C object providing randoms in uniform distribution - Copyright (C) 1994, 1995 Free Software Foundation, Inc. + Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc. Written by: R. Andrew McCallum Date: July 1994 @@ -33,7 +33,7 @@ #include #include -#define ABS(x) ((x) < 0 ? -x : x) +#define ABS(x) ((x) < 0 ? -x : x) typedef union { float f;