1 #include <sys/stat.h>
2 
3 #if HAVE_LSTAT
4 #else
5 #define lstat(name, buf) (stat((name), (buf)))
6 #endif
7