|
|
1.1 ! root 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: }
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.