home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / me34src.zip / me3 / util / imin.c < prev    next >
Text File  |  1995-01-14  |  111b  |  3 lines

  1.     /* imin(int,int) returns the the smaller of 2 ints */
  2. imin(a,b) register int a,b; { return (a < b) ? a : b; }
  3.