| 66 | typedef int (*load_dr_api_f)(struct dr_binds *drb); |
| 67 | |
| 68 | static inline int load_dr_api(struct dr_binds *drb) |
| 69 | { |
| 70 | load_dr_api_f load_dr; |
| 71 | |
| 72 | if ( !(load_dr = (load_dr_api_f)find_export("load_dr", 0))) |
| 73 | return -1; |
| 74 | |
| 75 | return load_dr(drb); |
| 76 | } |
| 77 | |
| 78 | #endif |
no test coverage detected