summaryrefslogtreecommitdiffstats
path: root/Python/getplatform.c
blob: 01e683588f8ecce3ae16eceb9096da8c3ca65dfe (plain)
1
2
3
4
5
6
7
8
9
#ifndef PLATFORM
#define PLATFORM "unknown"
#endif

char *
getplatform()
{
	return PLATFORM;
}