freebsd-dev/contrib/gdb/include/mpw/dirent.h
Paul Traina 7929041ebe Import GDB in its full glory (all 25mb). We'll put it on a diet once it's
fully registered.

(This is the second try, the first import ignored .info files but not .info-*
 files, for some reason.  I'm going to make this consistent.)

Reviewed by:	core
Approved for:	2.2
1996-11-03 17:03:03 +00:00

32 lines
622 B
C

#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 */