* adaint.c: Do not use utime.h on vxworks.

From-SVN: r47636
This commit is contained in:
Douglas B Rupp 2001-12-05 01:33:05 +01:00 committed by Geert Bosch
parent 5f10688fb6
commit 2c70f9ddc3
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-12-04 Douglass B. Rupp <rupp@gnat.com>
* adaint.c: Do not use utime.h on vxworks.
2001-12-04 Arnaud Charlet <charlet@gnat.com>
* Makefile.adalib: Clarify step 3 (use of gnat.adc) as it causes

View File

@ -935,7 +935,8 @@ __gnat_set_file_time_name (name, time_stamp)
char *name;
time_t time_stamp;
{
#if defined (__EMX__) || defined (MSDOS) || defined (_WIN32)
#if defined (__EMX__) || defined (MSDOS) || defined (_WIN32) \
|| defined (__vxworks)
#elif defined (VMS)
struct FAB fab;
struct NAM nam;