From 25b8cb22498ea05b68cdce1b6e561af39cde6217 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sat, 19 Jul 1997 19:48:41 +0000 Subject: Make it return a _const_ char*. --- Python/getplatform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/getplatform.c') diff --git a/Python/getplatform.c b/Python/getplatform.c index f9b4dc3538..aea2ef5c3e 100644 --- a/Python/getplatform.c +++ b/Python/getplatform.c @@ -35,7 +35,7 @@ PERFORMANCE OF THIS SOFTWARE. #define PLATFORM "unknown" #endif -char * +const char * Py_GetPlatform() { return PLATFORM; -- cgit v1.2.1