-: 0:Source:modperl_xsinit.c -: 0:Object:modperl_xsinit.bb -: 1:#include -: 2:#include -: 3: -: 4:EXTERN_C void xs_init (pTHX); -: 5: -: 6:EXTERN_C void boot_DynaLoader (pTHX_ CV* cv); -: 7: -: 8:EXTERN_C void -: 9:xs_init(pTHX) 20: 10:{ 20: 11: char *file = __FILE__; -: 12: dXSUB_SYS; -: 13: -: 14: /* DynaLoader is a special case */ 20: 15: newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file); -: 16:}