1 /* Implements the getpath API for compiling with no functionality */
2 
3 #include "Python.h"
4 #include "pycore_pathconfig.h"
5 
6 PyStatus
_PyConfig_InitPathConfig(PyConfig * config,int compute_path_config)7 _PyConfig_InitPathConfig(PyConfig *config, int compute_path_config)
8 {
9     return PyStatus_Error("path configuration is unsupported");
10 }
11