* libc/include/dirent.h: Protect against multiple inclusion.

This commit is contained in:
Christopher Faylor 2001-11-30 17:26:47 +00:00
parent 1cf0d8510a
commit a8e091b0bc
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-11-29 Christopher Faylor <cgf@redhat.com>
* libc/include/dirent.h: Protect against multiple inclusion.
2001-11-27 Christopher Faylor <cgf@redhat.com>
* libc/include/sys/types.h: Define useconds_t.

View File

@ -1,3 +1,5 @@
#ifndef _DIRENT_H_
#define _DIRENT_H_
#ifdef __cplusplus
extern "C" {
#endif
@ -10,3 +12,4 @@ extern "C" {
#ifdef __cplusplus
}
#endif
#endif /*_DIRENT_H_*/