1
1

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

* vfs.h: compilation fix for m68k-motorola-sysv
Этот коммит содержится в:
Miguel de Icaza 1998-03-31 17:27:11 +00:00
родитель 6ac7fbc179
Коммит 4e74ed86d0
2 изменённых файлов: 13 добавлений и 1 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -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