URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [newlib/] [newlib/] [libc/] [sys/] [sparc64/] [sys/] [time.h] - Rev 1765
Go to most recent revision | Compare with Previous | Blame | View Log
#ifndef _SYS_TIME_H #define _SYS_TIME_H #ifdef __cplusplus extern "C" { #endif struct timeval { long tv_sec; long tv_usec; }; typedef struct timestruc { time_t tv_sec; long tv_nsec; } timestruc_t; #ifdef __cplusplus } #endif #endif /* _SYS_TIME_H */
Go to most recent revision | Compare with Previous | Blame | View Log