add __max define

This commit is contained in:
Duncan Laurie 2005-05-11 05:49:41 +00:00
parent ace510828f
commit ea0e9ca5fd

View File

@ -63,4 +63,8 @@ void ipmi_start_daemon(void);
# define __min(a, b) ((a) < (b) ? (a) : (b))
#endif
#ifndef __max
# define __max(a, b) ((a) > (b) ? (a) : (b))
#endif
#endif /* IPMI_HELPER_H */