| 1088 | } |
| 1089 | |
| 1090 | void * |
| 1091 | reallocf(void *addr, unsigned long size, struct malloc_type *type, |
| 1092 | int flags) |
| 1093 | { |
| 1094 | void *mem; |
| 1095 | |
| 1096 | if ((mem = ff_realloc(addr, size)) == NULL) |
| 1097 | ff_free(addr); |
| 1098 | |
| 1099 | return (mem); |
| 1100 | } |
| 1101 | |
| 1102 | void |
| 1103 | DELAY(int delay) |
nothing calls this directly
no test coverage detected