Staging
v0.8.1
Revision 04232de22951037bed292ad910a3179f0bc26dfb authored by Miss Islington (bot) on 01 December 2020, 09:51:12 UTC, committed by GitHub on 01 December 2020, 09:51:12 UTC
(cherry picked from commit 80a429eae95c15c2c2a6753376f2697c90c2b6b9)

Co-authored-by: Andre Delfino <adelfino@gmail.com>
1 parent 1cc5c94
Raw File
getplatform.c

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

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