home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 December / simtel1292_SIMTEL_1292_Walnut_Creek.iso / msdos / small_c / sc88.arc / REWIND.C < prev    next >
Text File  |  1987-10-04  |  256b  |  9 lines

  1. #define NOCCARGC  /* no argument count passing */
  2. /*
  3. ** Rewind file to beginning. 
  4. */
  5. rewind(fd) int fd; {
  6.   return(seek(fd, 0, 0, 0));
  7.   }
  8.  
  9.