summaryrefslogtreecommitdiffstats
path: root/Python/getplatform.c
blob: 81a0f7ac5378bd55e02ab93148293266d8491921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

#include "Python.h"

#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

const char *
Py_GetPlatform(void)
{
    return PLATFORM;
}
62331 Tk is a free and open-source, cross-platform widget toolkit that provides a library of basic elements of GUI widgets for building a graphical user interface (GUI) in many programming languages.
summaryrefslogtreecommitdiffstats
path: root/generic/tkConfig.c
Commit message (Expand)AuthorAgeFilesLines
* Purge RCS Keywordsdgp2011-06-081-2/+0
|\
| * Purge RCS Keywords.dgp2011-06-081-2/+0
| |\
| | * Purge RCS Keywords.dgp2011-06-081-2/+0
| | * * generic/tkConfig.c (Tk_DeleteOptionTable, Tk_CreateOptionTable):hobbs2005-10-101-3/+3
| | * Fix [Bug 1252702]dkf2005-08-111-2/+2
* | | Remove casts from uses of ckalloc/ckfree/... now that Tcl declares them to bedkf2011-03-121-12/+10
* | | Use @EXEEXT@ in stead of @EXT_SUFFIX@nijtmans2010-02-221-6/+6
* | | * generic/tkConfig.c: Added another dimension of refCounting to thedgp2009-12-151-6/+49
* | | * generic/tkInt.h: add assert macros for clang staticdas2009-06-301-1/+2
* | | - eliminate some unnessary type castsnijtmans2009-02-031-3/+4
* | | Add "const" to many internalnijtmans2008-10-151-2/+2
* | | Greatly clean up Tk's handling of the writability of the Tcl result object.dkf2008-10-051-6/+5
* | | Get rid of pre-C89-isms (esp. CONST vs const).dkf2008-04-271-21/+21
|/ /
* | merge stable branch onto HEADdgp2007-12-131-1/+1
* | header cleanupdgp2007-09-071-3/+1
* | Missed a place (or rather not all versions of GCC catch it.)dkf2007-05-031-36/+21
* | Fix minor K&R-ismdkf2007-02-121-85/+84
* | ANSIfy and reduce casting of NULL to promote readabilitydkf2005-11-17