/* sys/utime.h (emx+gcc) */

#if !defined (_SYS_UTIME_H)
#define _SYS_UTIME_H

#if defined (__cplusplus)
extern "C" {
#endif

#if !defined (_TIME_T)
#define _TIME_T
typedef unsigned long time_t;
#endif

#if !defined (_UTIMBUF)
#define _UTIMBUF
struct utimbuf
{
  time_t actime;
  time_t modtime;
};
#endif

int utime (__const__ char *name, __const__ struct utimbuf *times);

#if defined (__cplusplus)
}
#endif

#endif /* !defined (_SYS_UTIME_H) */
