1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-11-15 03:43:03 +01:00

cleanup: Ensure python_api.c is never completely empty.

C doesn't allow this, there must be at least some declarations in it,
even if no code.
This commit is contained in:
iphydf 2022-03-17 17:49:50 +00:00
parent 22ca3704d2
commit eb7e6151a2
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9

View File

@ -20,9 +20,10 @@
* *
*/ */
#include "api.h"
#ifdef PYTHON #ifdef PYTHON
#include <Python.h> #include <Python.h>
#include "api.h"
#include "execute.h" #include "execute.h"