4.4BSD/usr/src/contrib/mh-6.8/miscellany/libndir/telldir.c

Compare this file to the similar file:
Show the results in this format:

static char sccsid[] = "@(#)telldir.c 4.4 4/2/83";

#include <sys/types.h>
#include <dir.h>

/*
 * return a pointer into a directory
 */
long
telldir(dirp)
	DIR *dirp;
{
	extern long lseek();

	return (lseek(dirp->dd_fd, 0L, 1) - dirp->dd_size + dirp->dd_loc);
}