source: trunk/third/gcc/libf2c/libI77/dolio.c @ 16960

Revision 16960, 424 bytes checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r16959, which included commits to RCS files with non-trunk default branches.
Line 
1#include "config.h"
2#include "f2c.h"
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7#ifdef KR_headers
8extern int (*f__lioproc)();
9
10integer do_lio(type,number,ptr,len) ftnint *number,*type; char *ptr; ftnlen len;
11#else
12extern int (*f__lioproc)(ftnint*, char*, ftnlen, ftnint);
13
14integer do_lio(ftnint *type, ftnint *number, char *ptr, ftnlen len)
15#endif
16{
17        return((*f__lioproc)(number,ptr,len,*type));
18}
19#ifdef __cplusplus
20        }
21#endif
Note: See TracBrowser for help on using the repository browser.