9 lines
86 B
C
9 lines
86 B
C
/* $Id$ */
|
|
#include <stdio.h>
|
|
|
|
rewind(iop)
|
|
FILE *iop;
|
|
{
|
|
return fseek(iop, 0L, 0);
|
|
}
|