| 187 | int line); |
| 188 | |
| 189 | static __inline void |
| 190 | _chkhook(hook_p hook, char *file, int line) |
| 191 | { |
| 192 | if (hook->hk_magic != HK_MAGIC) { |
| 193 | printf("Accessing freed "); |
| 194 | dumphook(hook, file, line); |
| 195 | } |
| 196 | hook->lastline = line; |
| 197 | hook->lastfile = file; |
| 198 | } |
| 199 | |
| 200 | static __inline void |
| 201 | _ng_hook_ref(hook_p hook, char * file, int line) |
no test coverage detected