summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libcsupport/src/telldir.c
blob: eee8d925ec88994cee2df95c752a2bb84bb4f28d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 *  telldir() - XXX
 * 
 *  $Id$
 */

#include <sys/param.h>
#include <assert.h>
#include <dirent.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>

#include <rtems.h>
#include "libio.h"

long telldir(
  DIR *dirp
)
{
  errno = ENOSYS;
  return -1;
}