this repo has no description
1/* Copyright (c) Facebook, Inc. and its affiliates. (http://www.facebook.com) */
2#ifndef Py_PYTHON_H
3#define Py_PYTHON_H
4
5#include <assert.h>
6#include <errno.h>
7#include <limits.h>
8#include <math.h>
9#include <stdarg.h>
10#include <stddef.h>
11#include <stdlib.h>
12#include <string.h>
13#include <unistd.h>
14
15#include "cpython-data.h"
16#include "cpython-func.h"
17#include "cpython-types.h"
18
19#endif