mirror of git://git.musl-libc.org/musl
15 lines
308 B
C
15 lines
308 B
C
#include "time32.h"
|
|
#include <time.h>
|
|
#include <utime.h>
|
|
|
|
struct utimbuf32 {
|
|
time32_t actime;
|
|
time32_t modtime;
|
|
};
|
|
|
|
int __utime_time32(const char *path, const struct utimbuf32 *times32)
|
|
{
|
|
return utime(path, !times32 ? 0 : (&(struct utimbuf){
|
|
.actime = times32->actime, .modtime = times32->modtime}));
|
|
}
|