2005-01-27 Ralf Corsepius <ralf.corsepius@rtems.org>

* libcsupport/src/lstat.c, libcsupport/src/readdir_r.c:
	Include config.h.
This commit is contained in:
Ralf Corsepius
2005-01-27 13:32:25 +00:00
parent e49f4c789b
commit efec4b0f60
3 changed files with 13 additions and 0 deletions

View File

@@ -1,3 +1,8 @@
2005-01-27 Ralf Corsepius <ralf.corsepius@rtems.org>
* libcsupport/src/lstat.c, libcsupport/src/readdir_r.c:
Include config.h.
2005-01-27 Ralf Corsepius <ralf.corsepius@rtems.org>
* libmisc/untar/untar.h: New prototype to eleminate warnings.

View File

@@ -11,6 +11,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#define _STAT_NAME lstat
#define _STAT_R_NAME _lstat_r
#define _STAT_FOLLOW_LINKS FALSE

View File

@@ -4,6 +4,10 @@
* $Id$
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#include <sys/types.h>
#include <dirent.h>
#include <errno.h>