xref: /linux/include/uapi/linux/utime.h (revision c95baf12f5077419db01313ab61c2aac007d40cd)
16f52b16cSGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2607ca46eSDavid Howells #ifndef _LINUX_UTIME_H
3607ca46eSDavid Howells #define _LINUX_UTIME_H
4607ca46eSDavid Howells 
5607ca46eSDavid Howells #include <linux/types.h>
6607ca46eSDavid Howells 
7607ca46eSDavid Howells struct utimbuf {
8*2a785996SArnd Bergmann 	__kernel_old_time_t actime;
9*2a785996SArnd Bergmann 	__kernel_old_time_t modtime;
10607ca46eSDavid Howells };
11607ca46eSDavid Howells 
12607ca46eSDavid Howells #endif
13