home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / compiler / small_c / byte_sc / rewind.c < prev    next >
Encoding:
Text File  |  1987-10-04  |  256 b   |  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.