contrib/fuzz/pyutil.h
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
Tue, 10 Dec 2019 17:07:09 -0500
changeset 43888 51bfd056a2ee
parent 43859 8766728dbce6
permissions -rw-r--r--
crecord: remove toggleamend Previous commit removed its only calling site.

#include <Python.h>

#if PY_MAJOR_VERSION >= 3
#define PYCODETYPE PyObject
#else
#define PYCODETYPE PyCodeObject
#endif

namespace contrib
{

void initpy(const char *cselfpath);
PyObject *pyglobals();

} /* namespace contrib */