summaryrefslogtreecommitdiff
path: root/source4/lib/util/util.h
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-04-24 14:20:44 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:04:16 -0500
commita30340affe789cd0c001e34c8e523fbba0742cfc (patch)
treef294f3a10c765cb694821f77183e392a203f66dc /source4/lib/util/util.h
parente2e3a8e007ac2a9533f4205622a6e17d57845fcc (diff)
downloadsamba-a30340affe789cd0c001e34c8e523fbba0742cfc.tar.gz
samba-a30340affe789cd0c001e34c8e523fbba0742cfc.tar.bz2
samba-a30340affe789cd0c001e34c8e523fbba0742cfc.zip
r15201: Use abs() rather then ABS()
(This used to be commit 1f3833d041fddaf79cd19d4f236780a02e97f095)
Diffstat (limited to 'source4/lib/util/util.h')
-rw-r--r--source4/lib/util/util.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/source4/lib/util/util.h b/source4/lib/util/util.h
index 302bd06323..383323b5ed 100644
--- a/source4/lib/util/util.h
+++ b/source4/lib/util/util.h
@@ -76,13 +76,6 @@ extern const char *panic_action;
DEBUG(0,("PANIC: assert failed at %s(%d)\n", __FILE__, __LINE__)); \
smb_panic("assert failed"); abort(); }} while (0)
-/**
- * determine absolute value
- */
-#ifndef ABS
-#define ABS(a) ((a)>0?(a):(-(a)))
-#endif
-
#ifndef SAFE_FREE /* Oh no this is also defined in tdb.h */
/**
* Free memory if the pointer and zero the pointer.