OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [linux/] [uClibc/] [libc/] [misc/] [dirent/] [telldir.c] - Rev 1765

Compare with Previous | Blame | View Log

#include <dirent.h>
#include <errno.h>
#include <unistd.h>
#include "dirstream.h"
 
 
long int telldir(DIR * dir)
{
	if (!dir) {
		__set_errno(EBADF);
		return -1;
	}
 
	/* The next entry. */
	return dir->dd_nextoff;
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.