Staging
v0.8.1
Revision 7df80492fc91cb5f344ef53a1ccce9a5bd3f4855 authored by Miss Islington (bot) on 09 February 2018, 15:56:34 UTC, committed by Serhiy Storchaka on 09 February 2018, 15:56:34 UTC
(cherry picked from commit bfe4fd5f2e96e72eecb5b8a0c7df0ac1689f3b7e)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
1 parent 3a047a7
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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