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