Files
KirkOS/ext2_root/usr/include/bits/ansi/timespec.h
T
kaguya 9a9b91c940 user: implement mlibc as the libc, finally.
It's finally done..

Signed-off-by: kaguya <vpshinomiya@protonmail.com>
2026-05-02 03:31:49 -04:00

14 lines
167 B
C

#ifndef MLIBC_TIMESPEC_H
#define MLIBC_TIMESPEC_H
#include <bits/ansi/time_t.h>
struct timespec {
time_t tv_sec;
long tv_nsec;
};
#endif /* MLIBC_TIMESPEC_H */