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