Files
rosetta/lib/libc/include/time.h
T

12 lines
125 B
C
Raw Normal View History

2026-04-01 18:49:57 +01:00
#ifndef TIME_H_
#define TIME_H_
typedef long long time_t;
struct timespec {
time_t tv_sec;
long long tv_nsec;
};
2026-04-01 18:49:57 +01:00
#endif