9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
14 lines
167 B
C
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 */
|
|
|