home *** CD-ROM | disk | FTP | other *** search
/ ftp.update.uu.se / ftp.update.uu.se.2014.03.zip / ftp.update.uu.se / pub / rainbow / cpm / emacs / emacssrc.lzh / ovopen32.c < prev    next >
C/C++ Source or Header  |  1992-03-11  |  263b  |  18 lines

  1. #include "stdio.h"
  2. #include "ed.h"
  3.  
  4. extern FILE * ffp;
  5. extern char Argbuf[128];
  6. extern int ovreq;
  7. extern int ovsub;
  8. extern int ovreq2;
  9. extern int ovsub2;
  10.  
  11. ovmain()
  12. {
  13.     ffp = fopen( Argbuf, "r" );
  14.     ovreq = ovreq2;
  15.     ovsub = ovsub2;
  16.     return ( 1 );
  17. }
  18.