(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
This commit is contained in:
mccallum 1996-03-31 23:15:12 +00:00
parent 9a4abde655
commit fa05569ce8

View file

@ -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 <mccallum@gnu.ai.mit.edu>
Date: July 1994
@ -33,7 +33,7 @@
#include <limits.h>
#include <assert.h>
#define ABS(x) ((x) < 0 ? -x : x)
#define ABS(x) ((x) < 0 ? -x : x)
typedef union {
float f;