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

  1.     /* imax(int,int) returns the the bigger of 2 ints */
  2. imax(a,b) register int a,b; { return (a > b) ? a : b; }
  3.