2017-11-01 22:08:43 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifndef _LINUX_UTIME_H
|
|
|
|
#define _LINUX_UTIME_H
|
|
|
|
|
2006-10-01 14:27:22 +08:00
|
|
|
#include <linux/types.h>
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
struct utimbuf {
|
2019-11-05 18:10:01 +08:00
|
|
|
__kernel_old_time_t actime;
|
|
|
|
__kernel_old_time_t modtime;
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|