From c4a0bd3ce9fc595ee7bfaa531d90b54545c50aed Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 4 Aug 1995 04:20:48 +0000 Subject: Initial revision --- Python/getplatform.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Python/getplatform.c (limited to 'Python/getplatform.c') diff --git a/Python/getplatform.c b/Python/getplatform.c new file mode 100644 index 0000000000..01e683588f --- /dev/null +++ b/Python/getplatform.c @@ -0,0 +1,9 @@ +#ifndef PLATFORM +#define PLATFORM "unknown" +#endif + +char * +getplatform() +{ + return PLATFORM; +} -- cgit v1.2.1