~ubuntu-branches/ubuntu/trusty/libf2c2/trusty

« back to all changes in this revision

Viewing changes to libF77/l_lt.c

  • Committer: Bazaar Package Importer
  • Author(s): Alan Bain
  • Date: 2008-05-19 22:50:54 UTC
  • mfrom: (2.1.4 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080519225054-jlymia0wdvvfq7dg
Tags: 20061008-4
Remove CVS directory left in source package

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include "f2c.h"
2
 
#ifdef __cplusplus
3
 
extern "C" {
4
 
#endif
5
 
 
6
 
#ifdef KR_headers
7
 
extern integer s_cmp();
8
 
logical l_lt(a,b,la,lb) char *a, *b; ftnlen la, lb;
9
 
#else
10
 
extern integer s_cmp(char *, char *, ftnlen, ftnlen);
11
 
logical l_lt(char *a, char *b, ftnlen la, ftnlen lb)
12
 
#endif
13
 
{
14
 
return(s_cmp(a,b,la,lb) < 0);
15
 
}
16
 
#ifdef __cplusplus
17
 
}
18
 
#endif