~ubuntu-branches/ubuntu/precise/ivtools/precise

« back to all changes in this revision

Viewing changes to src/ComUtil/util.h

  • Committer: Bazaar Package Importer
  • Author(s): Luca Falavigna
  • Date: 2008-05-23 12:42:28 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20080523124228-5j6pysoiflt9sbf9
Tags: 1.1.3-5.4ubuntu1
* Merge from Debian unstable, remaining Ubuntu changes:
  - debian/template: retain use of /etc/X11.
  - debian/control: update Maintainer field as per spec.

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
extern  int   TITLE;
115
115
#endif
116
116
 
117
 
#if !defined(min) && !defined(COMUTIL_NOMINMAXDEF) 
118
 
#define  min(a,b) (a<b?a:b)
 
117
#if !defined(my_min) && !defined(COMUTIL_NOMINMAXDEF) 
 
118
#define  my_min(a,b) (a<b?a:b)
119
119
#endif
120
 
#if !defined(max) && !defined(COMUTIL_NOMINMAXDEF)
121
 
#define  max(a,b) (a>b?a:b)
 
120
#if !defined(my_max) && !defined(COMUTIL_NOMINMAXDEF)
 
121
#define  my_max(a,b) (a>b?a:b)
122
122
#endif
123
123
 
124
124
/* Return Status for functions */