| 302 | |
| 303 | |
| 304 | static void add_module_name( void * r_, void * result_ ) |
| 305 | { |
| 306 | OBJECT * * const r = (OBJECT * *)r_; |
| 307 | LIST * * const result = (LIST * *)result_; |
| 308 | *result = list_push_back( *result, object_copy( *r ) ); |
| 309 | } |
| 310 | |
| 311 | |
| 312 | LIST * imported_modules( module_t * module ) |
nothing calls this directly
no test coverage detected