mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
28 lines
292 B
C
28 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
|