mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
009f78761d
types.h, utime.c, utime.h * wince/dll.mak : object file name changed. * wince/io.c : add empty dup2(). * wince/io.h : add dup2 definition. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3146 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
27 lines
292 B
C
27 lines
292 B
C
#ifndef SYS_UTIME_H
|
|
#define SYS_UTIME_H 1
|
|
|
|
#include <time.h>
|
|
|
|
struct utimbuf
|
|
{
|
|
time_t actime;
|
|
time_t modtime;
|
|
};
|
|
|
|
#define _utimbuf utimbuf
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int _utime(const char *f, struct utimbuf *t);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#define utime _utime
|
|
|
|
#endif
|