2015-06-16 17:43:53 +00:00
|
|
|
#include "EXTERN.h"
|
|
|
|
#include "perl.h"
|
|
|
|
#include "XSUB.h"
|
2009-02-17 00:27:28 +00:00
|
|
|
|
|
|
|
EXTERN_C void xs_init (pTHX);
|
|
|
|
|
|
|
|
EXTERN_C void boot_DynaLoader (pTHX_ CV* cv);
|
|
|
|
|
|
|
|
EXTERN_C void
|
|
|
|
xs_init(pTHX)
|
|
|
|
{
|
2015-06-16 17:43:53 +00:00
|
|
|
static const char file[] = __FILE__;
|
|
|
|
dXSUB_SYS;
|
|
|
|
PERL_UNUSED_CONTEXT;
|
2009-02-17 00:27:28 +00:00
|
|
|
|
2015-06-16 17:43:53 +00:00
|
|
|
/* DynaLoader is a special case */
|
|
|
|
newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
|
2009-02-17 00:27:28 +00:00
|
|
|
}
|