| 233 | } |
| 234 | |
| 235 | static __inline void |
| 236 | _ng_hook_set_rcvdata(hook_p hook, ng_rcvdata_t *val, char * file, int line) |
| 237 | { |
| 238 | _chkhook(hook, file, line); |
| 239 | _NG_HOOK_SET_RCVDATA(hook, val); |
| 240 | } |
| 241 | |
| 242 | static __inline void * |
| 243 | _ng_hook_private(hook_p hook, char * file, int line) |
nothing calls this directly
no test coverage detected