Revert "Use 64-bit years"

This reverts commit cfc3a953ae.
This commit is contained in:
Justine Tunney 2022-05-12 06:11:22 -07:00
parent cf73bbd678
commit dd9ab01d25
13 changed files with 484 additions and 544 deletions

View file

@ -83,13 +83,13 @@ typedef struct {
} div_t;
typedef struct {
long quot;
long rem;
long int quot;
long int rem;
} ldiv_t;
typedef struct {
long long quot;
long long rem;
long long int quot;
long long int rem;
} lldiv_t;
typedef struct {