Update to 2.0.0 tree from current Fremantle build
[opencv] / apps / cvenv / EiC / stdClib / dirent.h
diff --git a/apps/cvenv/EiC/stdClib/dirent.h b/apps/cvenv/EiC/stdClib/dirent.h
deleted file mode 100644 (file)
index 8aa0613..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef _DIRENTH
-#define _DIRENTH
-
-#pragma push_safeptr
-
-#include "sys/types.h"
-#include "sys/dirent.h"
-
-typedef struct
-        {
-        int     dd_fd;                  /* file descriptor */
-        int     dd_loc;                 /* offset in block */
-        int     dd_size;                /* amount of valid data */
-        struct dirent *dd_buf;          /* -> directory block */
-        }       DIR;                    /* stream data from opendir() */
-
-/* POSIX.1 */
-int closedir(DIR *dirp);
-DIR *opendir(const char *filename);
-struct dirent *readdir(DIR *dirp);
-void rewinddir(DIR *dirp);
-
-/* MISC */
-void seekdir(DIR *dirp, long loc);
-long telldir(DIR *dirp);
-
-#pragma pop_ptr
-
-#endif /* end _DIRENTH */