rewind.c 86 B

12345678
  1. /* $Id$ */
  2. #include <stdio.h>
  3. rewind(iop)
  4. FILE *iop;
  5. {
  6. return fseek(iop, 0L, 0);
  7. }