source: vendor/gcc/3.2.2/libf2c/libI77/dolio.c

Last change on this file was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 424 bytes
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.