libc: add time_t and struct timespec definitions

This commit is contained in:
2026-05-30 10:05:48 +01:00
parent df1662aa10
commit 2795a66985
+7
View File
@@ -1,4 +1,11 @@
#ifndef TIME_H_
#define TIME_H_
typedef long long time_t;
struct timespec {
time_t tv_sec;
long long tv_nsec;
};
#endif