| 1058 | } |
| 1059 | |
| 1060 | void send_msg_int(enum msgcode code, int num) |
| 1061 | { |
| 1062 | char numbuf[4]; |
| 1063 | |
| 1064 | if (DEBUG_GTE(IO, 1)) |
| 1065 | rprintf(FINFO, "[%s] send_msg_int(%d, %d)\n", who_am_i(), (int)code, num); |
| 1066 | |
| 1067 | SIVAL(numbuf, 0, num); |
| 1068 | send_msg(code, numbuf, 4, -1); |
| 1069 | } |
| 1070 | |
| 1071 | void send_msg_success(const char *fname, int num) |
| 1072 | { |
no test coverage detected