Annotation of 42BSD/ingres/source/gutil/min.c, revision 1.1.1.1

1.1       root        1: # include      <sccs.h>
                      2: 
                      3: SCCSID(@(#)min.c       7.1     2/5/81)
                      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: }

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.