cpp-d1064d
[cross.git] / i686-linux-gnu-4.7 / usr / include / linux / times.h
diff --git a/i686-linux-gnu-4.7/usr/include/linux/times.h b/i686-linux-gnu-4.7/usr/include/linux/times.h
new file mode 100644 (file)
index 0000000..9c72df6
--- /dev/null
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
+#ifndef _LINUX_TIMES_H
+#define _LINUX_TIMES_H
+
+#include <linux/types.h>
+
+struct tms {
+       __kernel_clock_t tms_utime;
+       __kernel_clock_t tms_stime;
+       __kernel_clock_t tms_cutime;
+       __kernel_clock_t tms_cstime;
+};
+
+#endif