* libc/include/sys/dir.h: New BSD-compatibility header.

This commit is contained in:
Yaakov Selkowitz 2010-08-11 18:14:54 +00:00
parent 841003a9b3
commit 7aba919b5e
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2010-08-10 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
* libc/include/sys/dir.h: New BSD-compatibility header.
2010-08-02 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
* libc/include/sys/features.h: Define _POSIX_MONOTONIC_CLOCK for Cygwin.

View File

@ -0,0 +1,10 @@
/* BSD predecessor of POSIX.1 <dirent.h> and struct dirent */
#ifndef _SYS_DIR_H_
#define _SYS_DIR_H_
#include <dirent.h>
#define direct dirent
#endif /*_SYS_DIR_H_*/