* Convert a 32 bit representation of time_t into time_t. XXX needs to * implement the 50-year rule to handle post-2038 conversions. */
| 24 | * implement the 50-year rule to handle post-2038 conversions. |
| 25 | */ |
| 26 | time_t |
| 27 | _time32_to_time(__int32_t t32) |
| 28 | { |
| 29 | return((time_t)t32); |
| 30 | } |
| 31 | |
| 32 | /* |
| 33 | * Convert time_t to a 32 bit representation. If time_t is 64 bits we can |
no outgoing calls
no test coverage detected