URL
https://opencores.org/ocsvn/test_project/test_project/trunk
Subversion Repositories test_project
[/] [test_project/] [trunk/] [linux_sd_driver/] [include/] [linux/] [times.h] - Rev 62
Compare with Previous | Blame | View Log
#ifndef _LINUX_TIMES_H #define _LINUX_TIMES_H #include <linux/types.h> struct tms { clock_t tms_utime; clock_t tms_stime; clock_t tms_cutime; clock_t tms_cstime; }; #endif