https://github.com/python/cpython
Raw File
Tip revision: 2de452f8bf2f78417e04bcf7919beb502c53a0e2 authored by Ɓukasz Langa on 16 March 2022, 12:12:59 UTC
Python 3.9.11, take two
Tip revision: 2de452f
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

const char *
Py_GetPlatform(void)
{
    return PLATFORM;
}
back to top