home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activetcltk / ActiveTcl8.3.4.1-8.win32-ix86.exe / ActiveTcl8.3.4.1-win32-ix86 / include / util / min.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-10-22  |  80 b   |  6 lines

  1. /* File: min.h */
  2.  
  3. #ifndef MIN
  4. #define MIN(x,y)        ((x) < (y) ? (x) : (y))
  5. #endif
  6.