1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-29 16:56:44 +02:00

Only include python libs when necessary

This commit is contained in:
jfreegman
2017-06-06 19:03:40 -04:00
parent 56a9571509
commit 922c184195
4 changed files with 12 additions and 2 deletions

View File

@ -23,7 +23,9 @@
#ifndef PYTHON_API_H
#define PYTHON_API_H
#ifdef PYTHON
#include <Python.h>
#endif /* PYTHON */
PyMODINIT_FUNC PyInit_toxic_api(void);
void terminate_python(void);