diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/platform.h | 8 | ||||
-rw-r--r-- | include/shadow_.h | 14 |
2 files changed, 11 insertions, 11 deletions
diff --git a/include/platform.h b/include/platform.h index 4ed5fe624..0adbed4e7 100644 --- a/include/platform.h +++ b/include/platform.h | |||
@@ -173,13 +173,13 @@ __extension__ typedef unsigned long long __u64; | |||
173 | #else | 173 | #else |
174 | /* Largest integral types. */ | 174 | /* Largest integral types. */ |
175 | #if __BIG_ENDIAN__ | 175 | #if __BIG_ENDIAN__ |
176 | typedef long int intmax_t; | 176 | typedef long intmax_t; |
177 | typedef unsigned long int uintmax_t; | 177 | typedef unsigned long uintmax_t; |
178 | #else | 178 | #else |
179 | __extension__ | 179 | __extension__ |
180 | typedef long long int intmax_t; | 180 | typedef long long intmax_t; |
181 | __extension__ | 181 | __extension__ |
182 | typedef unsigned long long int uintmax_t; | 182 | typedef unsigned long long uintmax_t; |
183 | #endif | 183 | #endif |
184 | #endif | 184 | #endif |
185 | 185 | ||
diff --git a/include/shadow_.h b/include/shadow_.h index fb2153c52..92bcde864 100644 --- a/include/shadow_.h +++ b/include/shadow_.h | |||
@@ -37,13 +37,13 @@ | |||
37 | struct spwd { | 37 | struct spwd { |
38 | char *sp_namp; /* Login name */ | 38 | char *sp_namp; /* Login name */ |
39 | char *sp_pwdp; /* Encrypted password */ | 39 | char *sp_pwdp; /* Encrypted password */ |
40 | long int sp_lstchg; /* Date of last change */ | 40 | long sp_lstchg; /* Date of last change */ |
41 | long int sp_min; /* Minimum number of days between changes */ | 41 | long sp_min; /* Minimum number of days between changes */ |
42 | long int sp_max; /* Maximum number of days between changes */ | 42 | long sp_max; /* Maximum number of days between changes */ |
43 | long int sp_warn; /* Number of days to warn user to change the password */ | 43 | long sp_warn; /* Number of days to warn user to change the password */ |
44 | long int sp_inact; /* Number of days the account may be inactive */ | 44 | long sp_inact; /* Number of days the account may be inactive */ |
45 | long int sp_expire; /* Number of days since 1970-01-01 until account expires */ | 45 | long sp_expire; /* Number of days since 1970-01-01 until account expires */ |
46 | unsigned long int sp_flag; /* Reserved */ | 46 | unsigned long sp_flag; /* Reserved */ |
47 | }; | 47 | }; |
48 | 48 | ||
49 | 49 | ||