home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / c / help.arc / MYNEWLIN.DEF < prev    next >
Text File  |  1988-03-10  |  101b  |  9 lines

  1. #include    <stdio.h>
  2.  
  3. mynewline( where )
  4. FILE    *where;
  5. {
  6.     fputs( "\n", where );
  7.     return( 0 );
  8. }
  9.