cpython/Python/getplatform.c

10 lines
95 B
C
Raw Normal View History

1995-08-04 01:20:48 -03:00
#ifndef PLATFORM
#define PLATFORM "unknown"
#endif
char *
getplatform()
{
return PLATFORM;
}