xref: /csrg-svn/usr.bin/f77/libF77/l_lt.c (revision 22922)
110508Sdlw /*
2*22922Skre  * Copyright (c) 1980 Regents of the University of California.
3*22922Skre  * All rights reserved.  The Berkeley software License Agreement
4*22922Skre  * specifies the terms and conditions for redistribution.
5*22922Skre  *
6*22922Skre  *	@(#)l_lt.c	5.1	06/07/85
710508Sdlw  */
810508Sdlw 
910508Sdlw long int l_lt(a,b,la,lb)
1010508Sdlw char *a, *b;
1110508Sdlw long int la, lb;
1210508Sdlw {
1310508Sdlw return(s_cmp(a,b,la,lb) < 0);
1410508Sdlw }
15