Staging
v0.5.1
Revision 74311aeb45b52cc145d27d9fca99f01874d6882d authored by Soumendra Ganguly on 28 November 2020, 21:04:20 UTC, committed by GitHub on 28 November 2020, 21:04:20 UTC
1 parent aa1b8a1
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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