Code

restore max() macro
authorKarl DeBisschop <kdebisschop@users.sourceforge.net>
Thu, 16 Jan 2003 05:21:18 +0000 (05:21 +0000)
committerKarl DeBisschop <kdebisschop@users.sourceforge.net>
Thu, 16 Jan 2003 05:21:18 +0000 (05:21 +0000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@243 f882894a-f735-0410-b71e-b25c423dba1c

plugins/utils.c

index 474206b93638bded27106ec8efbdfb7e1d40c15b..aaa9fe5ab7c74bdb4f9b703b4a892097b3e46e24 100644 (file)
@@ -65,6 +65,8 @@ char *strpcat (char *dest, const char *src, const char *str);
  * Note that numerically the above does not hold
  ****************************************************************************/
 
+#define max(a,b) (((a)>(b))?(a):(b))
+
 int
 max_state (int a, int b)
 {