| 74 | } |
| 75 | |
| 76 | time_t |
| 77 | _long_to_time(long tlong) |
| 78 | { |
| 79 | if (sizeof(long) == sizeof(__int32_t)) |
| 80 | return(_time32_to_time(tlong)); |
| 81 | return((time_t)tlong); |
| 82 | } |
| 83 | |
| 84 | /* |
| 85 | * Convert to/from 'int'. Depending on the sizeof(int) this may or |
no test coverage detected