[Nagiosplug-checkins] CVS: nagiosplug/plugins utils.h,1.16,1.17

Karl DeBisschop kdebisschop at users.sourceforge.net
Wed Aug 27 20:22:08 CEST 2003


Update of /cvsroot/nagiosplug/nagiosplug/plugins
In directory sc8-pr-cvs1:/tmp/cvs-serv9327

Modified Files:
	utils.h 
Log Message:
add min() macro to complement max()

Index: utils.h
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/utils.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** utils.h	26 Aug 2003 10:44:14 -0000	1.16
--- utils.h	28 Aug 2003 03:20:25 -0000	1.17
***************
*** 79,82 ****
--- 79,83 ----
  
  #define max(a,b) (((a)>(b))?(a):(b))
+ #define min(a,b) (((a)<(b))?(a):(b))
  
  char *perfdata (const char *label,





More information about the Commits mailing list