Staging
v0.5.1
https://github.com/python/cpython
Revision 58df679b5e25f365a5cc946164343839bba82db0 authored by Georg Brandl on 03 July 2010, 10:25:47 UTC, committed by Georg Brandl on 03 July 2010, 10:25:47 UTC
1 parent 91a6334
Raw File
Tip revision: 58df679b5e25f365a5cc946164343839bba82db0 authored by Georg Brandl on 03 July 2010, 10:25:47 UTC
Add missing target.
Tip revision: 58df679
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