1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #ifndef __MES_DIRSTREAM_H
- #define __MES_DIRSTREAM_H 1
- #if SYSTEM_LIBC && HAVE_DIRSTREAM_H
- #ifndef _GNU_SOURCE
- #define _GNU_SOURCE
- #endif
- #undef __MES_DIRSTREAM_H
- #include_next <dirstream.h>
- #else
- #include <sys/types.h>
- struct __dirstream
- {
- int fd;
- char *data;
- size_t allocation;
- size_t size;
- size_t offset;
- off_t filepos;
- };
- typedef struct __dirstream DIR;
- #endif
- #endif
|