
This patch moves more includes (most of them, to tell the truth) to common/include directory. This completes the list of includes needed to compile current trunk with the new libc (but to do that you need more patches in queue). This patch also contains some modification (for compilation with new headers) to the common includes under __NBSD_LIBC, the define used in mk script to specialize compilation with new includes.
27 lines
382 B
C
27 lines
382 B
C
/* The <dir.h> header gives the layout of a directory. */
|
|
|
|
#ifndef _DIR_H
|
|
#define _DIR_H
|
|
|
|
#ifdef __NBSD_LIBC
|
|
#include <sys/cdefs.h>
|
|
#endif
|
|
#include <minix/types.h>
|
|
|
|
#define DIRBLKSIZ 512 /* size of directory block */
|
|
|
|
#ifndef DIRSIZ
|
|
#define DIRSIZ 60
|
|
#endif
|
|
|
|
struct direct {
|
|
ino_t d_ino;
|
|
char d_name[DIRSIZ];
|
|
#ifdef __NBSD_LIBC
|
|
} __packed;
|
|
#else
|
|
};
|
|
#endif
|
|
|
|
#endif /* _DIR_H */
|