summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/include/dirent.h
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2002-07-08 07:45:08 +0000
committerMystery Man <unknown@mandriva.org>2002-07-08 07:45:08 +0000
commit93fcd1d443d69857dc3c5d859a73f593d4e12d70 (patch)
treec1fd7550aaa100db9c8cafab358531978b6386d8 /mdk-stage1/dietlibc/include/dirent.h
parent9555bb791920e8feace953f90cf908e864451b59 (diff)
downloaddrakx-93fcd1d443d69857dc3c5d859a73f593d4e12d70.tar
drakx-93fcd1d443d69857dc3c5d859a73f593d4e12d70.tar.gz
drakx-93fcd1d443d69857dc3c5d859a73f593d4e12d70.tar.bz2
drakx-93fcd1d443d69857dc3c5d859a73f593d4e12d70.tar.xz
drakx-93fcd1d443d69857dc3c5d859a73f593d4e12d70.zip
This commit was manufactured by cvs2svn to create tag 'V1_1_8_1mdk'.V1_1_8_1mdk
Diffstat (limited to 'mdk-stage1/dietlibc/include/dirent.h')
-rw-r--r--mdk-stage1/dietlibc/include/dirent.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/mdk-stage1/dietlibc/include/dirent.h b/mdk-stage1/dietlibc/include/dirent.h
deleted file mode 100644
index b0ad4f5ec..000000000
--- a/mdk-stage1/dietlibc/include/dirent.h
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef _DIRENT_H
-#define _DIRENT_H 1
-
-#include <sys/cdefs.h>
-#include <sys/types.h>
-
-#include <linux/dirent.h>
-
-#define d_fileno d_ino /* Backwards compatibility. */
-
-#undef _DIRENT_HAVE_D_NAMLEN
-#define _DIRENT_HAVE_D_RECLEN
-#define _DIRENT_HAVE_D_OFF
-#define _DIRENT_HAVE_D_TYPE
-
-typedef struct __dirstream DIR;
-
-DIR *opendir (const char *__name) __THROW;
-int closedir (DIR *__dirp) __THROW;
-struct dirent *readdir (DIR *__dirp) __THROW;
-struct dirent64 *readdir64 (DIR *__dirp) __THROW;
-void rewinddir (DIR *__dirp) __THROW;
-void seekdir (DIR *__dirp, long int __pos) __THROW;
-long int telldir (DIR *__dirp) __THROW;
-
-#endif