| 40 | #endif |
| 41 | |
| 42 | static short |
| 43 | leshort(short x) |
| 44 | { |
| 45 | #ifdef __BIG_ENDIAN__ |
| 46 | return ((x & 0xff) << 8) | ((x >> 8) & 0xff); |
| 47 | #else |
| 48 | return x; |
| 49 | #endif |
| 50 | } |
| 51 | |
| 52 | static int32_t |
| 53 | lelong(int32_t x) |
no outgoing calls
no test coverage detected