1 /* Copyright (c) 1982 Regents of the University of California */ 2 3 static char sccsid[] = "@(#)seekdir.c 1.1 02/11/82"; 4 5 #include <sys/types.h> 6 #include <ndir.h> 7 8 /* 9 * reset a directory. 10 */ 11 void 12 resetdir(dirp) 13 DIR *dirp; 14 { 15 lseek(dirp->dd_fd, (long)0, 0); 16 dirp->dd_loc = 0; 17 } 18