Staging
v0.8.1
Revision 74ceb358c70d3183644271abcf711100c9695dbc authored by Benjamin Peterson on 19 October 2019, 18:37:52 UTC, committed by Benjamin Peterson on 19 October 2019, 18:37:52 UTC
1 parent 6c4f841
Raw File
dynload_stub.c

/* This module provides the necessary stubs for when dynamic loading is
   not present. */

#include "Python.h"
#include "importdl.h"


const struct filedescr _PyImport_DynLoadFiletab[] = {
	{0, 0}
};
back to top