mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-26 03:39:02 +08:00
4d85a6fea6
* libF77/*: Delete KR_headers cruft. * libI77/*: Likewise. * libU77/*: Likewise. From-SVN: r54132
10 lines
249 B
C
10 lines
249 B
C
/* EFL support routine to compare two character strings */
|
|
|
|
#include "f2c.h"
|
|
|
|
extern integer s_cmp(char*,char*,ftnlen,ftnlen);
|
|
integer G77_ef1cmc_0 (ftnint *a, ftnlen *la, ftnint *b, ftnlen *lb)
|
|
{
|
|
return( s_cmp( (char *)a, (char *)b, *la, *lb) );
|
|
}
|