Description:
stat() function: query file information

Files:
lib/stat.c
lib/stat-w32.h
lib/stat-w32.c
m4/stat.m4

Depends-on:
sys_stat-h
largefile
assert-h        [test $REPLACE_STAT = 1]
filename        [test $REPLACE_STAT = 1]
malloca         [test $REPLACE_STAT = 1]
pathmax         [test $REPLACE_STAT = 1]
stat-time       [test $REPLACE_STAT = 1]
stringeq        [test $REPLACE_STAT = 1]
bool            [test $REPLACE_STAT = 1]

configure.ac:
gl_FUNC_STAT
gl_CONDITIONAL([GL_COND_OBJ_STAT], [test $REPLACE_STAT = 1])
AM_COND_IF([GL_COND_OBJ_STAT], [
  case "$host_os" in
    mingw* | windows*)
      AC_LIBOBJ([stat-w32])
      ;;
  esac
  gl_PREREQ_STAT
])
gl_SYS_STAT_MODULE_INDICATOR([stat])
gl_MODULE_INDICATOR([stat])

Makefile.am:
if GL_COND_OBJ_STAT
lib_SOURCES += stat.c
endif

Include:
<sys/stat.h>

License:
LGPLv2+

Maintainer:
Eric Blake
