Add define for Kirk Smith's USR Courier driver. Change default baud
[unix-history] / usr / src / usr.bin / f77 / libF77 / l_ge.c
CommitLineData
958bf794 1/*
121fdf6e
RE
2 * Copyright (c) 1980 Regents of the University of California.
3 * All rights reserved. The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
6 * @(#)l_ge.c 5.1 %G%
958bf794
DW
7 */
8
9long int l_ge(a,b,la,lb)
10char *a, *b;
11long int la, lb;
12{
13return(s_cmp(a,b,la,lb) >= 0);
14}