19990502 sourceware import
This commit is contained in:
31
include/mpw/dirent.h
Normal file
31
include/mpw/dirent.h
Normal file
@ -0,0 +1,31 @@
|
||||
#ifndef __dirent_h
|
||||
#define __dirent_h
|
||||
|
||||
#include "sys/dir.h"
|
||||
|
||||
struct dirent {
|
||||
long d_ino; /* inode number of entry */
|
||||
off_t d_off; /* offset of disk directory entry */
|
||||
unsigned short d_reclen; /* length of this record */
|
||||
char d_name[1]; /* name of file */
|
||||
};
|
||||
|
||||
/*
|
||||
#define DIRENTBASESIZE \
|
||||
(((struct dirent *) 0)->d_name - (char *) 0)
|
||||
#define DIRENTSIZE(namelen) \
|
||||
((DIRENTBASESIZE + (namelen) + NBPW) & ~(NBPW - 1))
|
||||
*/
|
||||
|
||||
/* from Mips posix/dirent.h */
|
||||
|
||||
/*
|
||||
#undef rewinddir
|
||||
*/
|
||||
|
||||
extern DIR *opendir();
|
||||
extern struct dirent *readdir();
|
||||
extern void rewinddir();
|
||||
extern int closedir();
|
||||
|
||||
#endif /* ! __dirent_h */
|
Reference in New Issue
Block a user