diff options
author | Rich Felker <dalias@aerifal.cx> | 2019-10-22 17:08:56 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-11-02 18:30:56 -0400 |
commit | d6dcfe4d0c58856690ecbad4cf191d7c9ee1a4a8 (patch) | |
tree | 111997bb27d2e0266025960b090d620d80a44d34 /arch/riscv64 | |
parent | b60fdf133c033d4ad6b04a8237f253563fae5928 (diff) | |
download | musl-d6dcfe4d0c58856690ecbad4cf191d7c9ee1a4a8.tar.gz musl-d6dcfe4d0c58856690ecbad4cf191d7c9ee1a4a8.tar.xz musl-d6dcfe4d0c58856690ecbad4cf191d7c9ee1a4a8.zip |
move time_t and suseconds_t definitions to common alltypes.h.in
now that all 32-bit archs have 64-bit time_t (and suseconds_t), the arch-provided _Int64 macro (long or long long, as appropriate) can be used to define them, and arch-specific definitions are no longer needed.
Diffstat (limited to 'arch/riscv64')
-rw-r--r-- | arch/riscv64/bits/alltypes.h.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/riscv64/bits/alltypes.h.in b/arch/riscv64/bits/alltypes.h.in index 77e9798a..4579d174 100644 --- a/arch/riscv64/bits/alltypes.h.in +++ b/arch/riscv64/bits/alltypes.h.in @@ -16,6 +16,3 @@ TYPEDEF float float_t; TYPEDEF double double_t; TYPEDEF struct { long long __ll; long double __ld; } max_align_t; - -TYPEDEF long time_t; -TYPEDEF long suseconds_t; |