diff options
author | Dmitry Chestnykh <dm.chestnykh@gmail.com> | 2024-03-01 12:19:09 +0300 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-03-01 10:30:32 +0100 |
commit | 1be6cbd9c096618bdaf0f257e04ddd4ab0892fb9 (patch) | |
tree | 5dcc9513e2218d3543de8d8a527b85346f975936 /include/internal | |
parent | 2a8b04b20f65ab05d0639ba5f95cb28659a5c020 (diff) |
libc: Remove 32bit timespec structures everywhere.
With time64 enabled we use statx() system call and the appropriate
routines for results conversion. There is no need in `__ts32_struct`
anymore.
Signed-off-by: Dmitry Chestnykh <dm.chestnykh@gmail.com>
Diffstat (limited to 'include/internal')
-rw-r--r-- | include/internal/time64_helpers.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/internal/time64_helpers.h b/include/internal/time64_helpers.h index 0f912f4bf..2284aacd9 100644 --- a/include/internal/time64_helpers.h +++ b/include/internal/time64_helpers.h @@ -5,11 +5,6 @@ #include <time.h> #include <stddef.h> -struct __ts32_struct { - __S32_TYPE tv_sec; - __S32_TYPE tv_nsec; -}; - struct __ts64_struct { __S64_TYPE tv_sec; __S64_TYPE tv_nsec; |