2 * <stdio.h> wrapper functions.
5 * Jonathan Pryor (jonpryor@vt.edu)
7 * Copyright (C) 2004-2006 Jonathan Pryor
10 #include <sys/types.h>
19 Mono_Posix_Syscall_utime (const char *filename
, struct Mono_Posix_Utimbuf
*buf
,
23 struct utimbuf
*pbuf
= NULL
;
26 _buf
.actime
= buf
->actime
;
27 _buf
.modtime
= buf
->modtime
;
31 return utime (filename
, pbuf
);