summaryrefslogtreecommitdiffstats
path: root/lib/libF77/ef1cmc_.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libF77/ef1cmc_.c')
-rw-r--r--lib/libF77/ef1cmc_.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/libF77/ef1cmc_.c b/lib/libF77/ef1cmc_.c
new file mode 100644
index 0000000..8239a6b
--- /dev/null
+++ b/lib/libF77/ef1cmc_.c
@@ -0,0 +1,14 @@
+/* EFL support routine to compare two character strings */
+
+#include "f2c.h"
+
+#ifdef KR_headers
+extern integer s_cmp();
+integer ef1cmc_(a, la, b, lb) ftnint *a, *b; ftnlen *la, *lb;
+#else
+extern integer s_cmp(char*,char*,ftnlen,ftnlen);
+integer ef1cmc_(ftnint *a, ftnlen *la, ftnint *b, ftnlen *lb)
+#endif
+{
+return( s_cmp( (char *)a, (char *)b, *la, *lb) );
+}
OpenPOWER on IntegriCloud