(add): on second thought, remove abs. there's already a standard

function in ANSI of that name and I prefer functions to macros and we
depend on it existing in a number of places.


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5376 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1999-02-16 00:55:18 +00:00
parent 1aaafb524f
commit beaef7e102

View File

@@ -69,10 +69,6 @@
#define min(a,b) (((a)<(b))?(a):(b))
#endif
#ifndef abs
#define abs(x) (((x) < 0) ? (-x) : (x))
#endif
#ifndef TRUE
#define TRUE 1
#endif