abs() is part of C89.
authormarkus schnalke <meillo@marmaro.de>
Tue, 27 Mar 2012 09:06:46 +0000 (11:06 +0200)
committermarkus schnalke <meillo@marmaro.de>
Tue, 27 Mar 2012 09:06:46 +0000 (11:06 +0200)
h/mh.h
sbr/dtime.c

diff --git a/h/mh.h b/h/mh.h
index 6a5cf9f..8d698f4 100644 (file)
--- a/h/mh.h
+++ b/h/mh.h
@@ -250,10 +250,6 @@ extern int msg_count;        /* m_getfld() indicators (That's a hack!) */
 # define min(a,b) ((a) < (b) ? (a) : (b))
 #endif
 
-#ifndef abs
-# define abs(a) ((a) > 0 ? (a) : -(a))
-#endif
-
 /*
 ** GLOBAL VARIABLES
 */
index 48e13db..1273112 100644 (file)
 extern long timezone;
 #endif
 
-#ifndef abs
-# define abs(a) (a >= 0 ? a : -a)
-#endif
-
 /*
 ** The number of days in the year, accounting for leap years
 */