10 lines268 bytes
1#ifndef COR_PLATFORM_INC_H
2#define COR_PLATFORM_INC_H
3// platform specific parts collected together
4
5// examples, say if you wanted to integrate coroutine into cpython
6// #define Coroutine_NS(N) _Py_Coroutine_##N
7// #define Coroutine_API_FUNC(T) PyAPI_FUNC(T)
8
9#endif
10