* global.h: Fallback to sys/utime.h if utime.h is missing.

This commit is contained in:
Pavel Roskin 2002-01-21 20:57:31 +00:00
parent 3a9692b680
commit a504067e6c
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2002-01-21 Pavel Roskin <proski@gnu.org>
* global.h: Fallback to sys/utime.h if utime.h is missing.
* global.h: Provide fallbacks for getuid(), getgid(), geteuid()
and getegid().
* fs.h: Fully trust HAVE_DIRENT_H.

View File

@ -33,6 +33,8 @@
#ifdef HAVE_UTIME_H
# include <utime.h>
#elif HAVE_SYS_UTIME_H
# include <sys/utime.h>
#endif
#ifdef HAVE_SYS_WAIT_H