Initial revision

This commit is contained in:
Guido van Rossum 1995-08-04 04:20:48 +00:00
parent 37ba0bc50b
commit 667d704997
8 changed files with 1013 additions and 0 deletions

9
Python/getplatform.c Normal file
View file

@ -0,0 +1,9 @@
#ifndef PLATFORM
#define PLATFORM "unknown"
#endif
char *
getplatform()
{
return PLATFORM;
}