1: # include   <sccs.h>
   2: 
   3: SCCSID(@(#)min.c	8.1	12/31/84)
   4: 
   5: /*
   6: **  MIN -- return the minimum of two integers.
   7: **
   8: **	Why should I even have to write this????
   9: */
  10: 
  11: min(a, b)
  12: int a;
  13: int b;
  14: {
  15:     return ((a < b) ? a : b);
  16: }

Defined functions

min defined in line 3; never used
Last modified: 1986-04-17
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 581
Valid CSS Valid XHTML 1.0 Strict