Last change
on this file was 1392, checked in by bird, 21 years ago |
This commit was generated by cvs2svn to compensate for changes in r1391,
which included commits to RCS files with non-trunk default branches.
|
-
Property cvs2svn:cvs-rev
set to
1.1.1.2
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
371 bytes
|
Line | |
---|
1 | /* EFL support routine to copy string b to string a */
|
---|
2 |
|
---|
3 | #include "f2c.h"
|
---|
4 |
|
---|
5 |
|
---|
6 | #define M ( (long) (sizeof(long) - 1) )
|
---|
7 | #define EVEN(x) ( ( (x)+ M) & (~M) )
|
---|
8 |
|
---|
9 | extern void s_copy (char *, char *, ftnlen, ftnlen);
|
---|
10 | int
|
---|
11 | G77_ef1asc_0 (ftnint * a, ftnlen * la, ftnint * b, ftnlen * lb)
|
---|
12 | {
|
---|
13 | s_copy ((char *) a, (char *) b, EVEN (*la), *lb);
|
---|
14 | return 0; /* ignored return value */
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.