URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [stdalone/] [dhrystone/] [port/] [dhry_utils.h] - Rev 299
Go to most recent revision | Compare with Previous | Blame | View Log
/* * dhry_utils.h -- utility functions */ #include "stdarg.h" #include "iolib.h" #define HZ 1000 /* 1000 clock ticks per second */ typedef unsigned long clock_t; typedef struct tms { clock_t tms_utime; /* user time */ clock_t tms_stime; /* system time */ clock_t tms_cutime; /* user time of children */ clock_t tms_cstime; /* system time of children */ }; clock_t times(struct tms *buf); void *malloc(unsigned size);
Go to most recent revision | Compare with Previous | Blame | View Log