1998-03-31 Philippe De Muyter <phdm@macqel.be>

* vfs.h: compilation fix for m68k-motorola-sysv
This commit is contained in:
Miguel de Icaza 1998-03-31 17:27:11 +00:00
parent 6ac7fbc179
commit 4e74ed86d0
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,7 @@
1998-03-31 Philippe De Muyter <phdm@macqel.be>
* vfs.h: compilation fix for m68k-motorola-sysv
Wed Mar 25 19:01:48 1998 Norbert Warmuth <k3190@fh-sw.de>
* extfs/hp48: Added a usage summary

View File

@ -4,7 +4,15 @@
#if !defined(SCO_FLAVOR) || !defined(_SYS_SELECT_H)
# include <sys/time.h> /* alex: this redefines struct timeval */
#endif /* SCO_FLAVOR */
#include <utime.h>
#ifdef HAVE_UTIME_H
# include <utime.h>
#else
struct utimbuf {
time_t actime;
time_t modtime;
};
#endif
#ifdef USE_VFS