| 1086 | */ |
| 1087 | |
| 1088 | LIST * builtin_delete_module( FRAME * frame, int flags ) |
| 1089 | { |
| 1090 | LIST * const arg0 = lol_get( frame->args, 0 ); |
| 1091 | module_t * const source_module = bindmodule( list_empty( arg0 ) ? 0 : |
| 1092 | list_front( arg0 ) ); |
| 1093 | delete_module( source_module ); |
| 1094 | return L0; |
| 1095 | } |
| 1096 | |
| 1097 | |
| 1098 | /* |
nothing calls this directly
no test coverage detected