mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-09 01:28:05 -04:00
11 lines
152 B
C
11 lines
152 B
C
#ifndef _LINUX_UTIME_H
|
|
#define _LINUX_UTIME_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct utimbuf {
|
|
__kernel_time_t actime;
|
|
__kernel_time_t modtime;
|
|
};
|
|
|
|
#endif
|