repo.or.cz
/
python.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Misc/NEWS entries for issue 7117.
[python.git]
/
Python
/
getplatform.c
blob
68991402b5b0001cfbf52a9394baa3340f52fe88
1
2
#include
"Python.h"
3
4
#ifndef PLATFORM
5
#define PLATFORM
"unknown"
6
#endif
7
8
const char
*
9
Py_GetPlatform
(
void
)
10
{
11
return
PLATFORM
;
12
}