1: static char sccsid[] = "@(#)telldir.c 4.1 2/21/82"; 2: 3: #include <sys/types.h> 4: #include <ndir.h> 5: 6: extern long lseek(); /* needed for pdp 11s -- ikonas!mcm */ 7: 8: /* 9: * return a pointer into a directory 10: */ 11: long 12: telldir(dirp) 13: DIR *dirp; 14: { 15: return (lseek(dirp->dd_fd, 0L, 1) - dirp->dd_size + dirp->dd_loc); 16: }