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