home *** CD-ROM | disk | FTP | other *** search
- /* 1.0 07-06-84 */
- /************************************************************************
- * Robert C. Tausworthe *
- * Jet Propulsion Laboratory *
- * Pasadena, CA 91009 1984 *
- ************************************************************************/
-
- #include "defs.h"
-
- /************************************************************************/
- long
- lmax(x, y) /* return larger of x and y, long */
-
- /*----------------------------------------------------------------------*/
- long x, y;
- {
- return MAX(x,y);
- }
-
- /************************************************************************/
- long
- lmin(x, y) /* return lesser of x and y, long */
-
- /*----------------------------------------------------------------------*/
- long x, y;
- {
- return MIN(x,y);
- }