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/sh | |
parent | b60fdf133c033d4ad6b04a8237f253563fae5928 (diff) | |
download | musl-d6dcfe4d0c58856690ecbad4cf191d7c9ee1a4a8.tar.gz musl-d6dcfe4d0c58856690ecbad4cf191d7c9ee1a4a8.tar.bz2 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/sh')
-rw-r--r-- | arch/sh/bits/alltypes.h.in | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/sh/bits/alltypes.h.in b/arch/sh/bits/alltypes.h.in index 04e0fcca..6a538352 100644 --- a/arch/sh/bits/alltypes.h.in +++ b/arch/sh/bits/alltypes.h.in @@ -23,6 +23,3 @@ TYPEDEF float float_t; TYPEDEF double double_t; TYPEDEF struct { long long __ll; long double __ld; } max_align_t; - -TYPEDEF long long time_t; -TYPEDEF long long suseconds_t; |