Avoid compilation errors with some C++ compilers.
[gnulib.git] / lib / stat_.h
index d2e0796..8c2e552 100644 (file)
 /* This file is supposed to be used on platforms where <sys/stat.h> is
    incomplete.  It is intended to provide definitions and prototypes
    needed by an application.  Start with what the system provides.  */
-#include @FULL_PATH_SYS_STAT_H@
+#include @ABSOLUTE_SYS_STAT_H@
 
 /* mingw does not support symlinks, therefore it does not have lstat.  But
    without links, stat does just fine.  */
-#if ! HAVE_FUNC_LSTAT
+#if ! HAVE_LSTAT
 # define lstat stat
 #endif