Staging
v0.8.1
https://github.com/python/cpython
Revision 09231e657aeaea64ca425a387791c6fa09070221 authored by Ned Deily on 12 November 2016, 21:34:25 UTC, committed by Ned Deily on 12 November 2016, 21:34:25 UTC
1 parent 58b6b98
Raw File
Tip revision: 09231e657aeaea64ca425a387791c6fa09070221 authored by Ned Deily on 12 November 2016, 21:34:25 UTC
Issue #28676: Prevent missing 'getentropy' declaration warning on macOS.
Tip revision: 09231e6
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