11 lines
193 B
C
11 lines
193 B
C
#pragma once
|
|
// TODO: #include <sys/types.h>!!!
|
|
#include <sys/time.h>
|
|
|
|
struct utimbuf {
|
|
time_t actime;
|
|
time_t modtime;
|
|
};
|
|
|
|
int utime(const char *filename, const struct utimbuf *times);
|