Staging
v0.8.1
Revision 7b3ab5921fa25ed8b97b6296f97c5c78aacf5447 authored by Łukasz Langa on 24 February 2020, 21:36:25 UTC, committed by Łukasz Langa on 24 February 2020, 21:36:25 UTC
1 parent 1f4cf0c
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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