blob: b8e89ef1467e055926ea17a269b21034ee62f163 [file] [log] [blame]
Guido van Rossum582646a1996-05-28 22:30:17 +00001/***********************************************************
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00002Copyright (c) 2000, BeOpen.com.
3Copyright (c) 1995-2000, Corporation for National Research Initiatives.
4Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
5All rights reserved.
Guido van Rossum582646a1996-05-28 22:30:17 +00006
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00007See the file "Misc/COPYRIGHT" for information on usage and
8redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Guido van Rossum582646a1996-05-28 22:30:17 +00009******************************************************************/
10
11#include "Python.h"
12
Guido van Rossum667d7041995-08-04 04:20:48 +000013#ifndef PLATFORM
14#define PLATFORM "unknown"
15#endif
16
Guido van Rossum8fb26ed1997-07-19 19:48:41 +000017const char *
Guido van Rossum582646a1996-05-28 22:30:17 +000018Py_GetPlatform()
Guido van Rossum667d7041995-08-04 04:20:48 +000019{
20 return PLATFORM;
21}