home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / SMALL_C / 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.