Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6
[linux-2.6-block.git] / include / linux / times.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_TIMES_H
2#define _LINUX_TIMES_H
3
4#include <linux/types.h>
5
6struct tms {
85efde6f
AB
7 __kernel_clock_t tms_utime;
8 __kernel_clock_t tms_stime;
9 __kernel_clock_t tms_cutime;
10 __kernel_clock_t tms_cstime;
1da177e4
LT
11};
12
13#endif