blob: 9830917494a62eddef8f6c053b144d1891a62cce [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 *
Thomas Woutersf70ef4f2000-07-22 18:47:25 +000018Py_GetPlatform(void)
Guido van Rossum667d7041995-08-04 04:20:48 +000019{
20 return PLATFORM;
21}