| 931 | } |
| 932 | |
| 933 | static int32 raw_read_int(void) |
| 934 | { |
| 935 | char *data, buf[4]; |
| 936 | if (iobuf.in.size - iobuf.in.pos >= 4) |
| 937 | data = perform_io(4, PIO_INPUT_AND_CONSUME); |
| 938 | else |
| 939 | raw_read_buf(data = buf, 4); |
| 940 | return IVAL(data, 0); |
| 941 | } |
| 942 | |
| 943 | void noop_io_until_death(void) |
| 944 | { |
no test coverage detected