diff options
author | Guido van Rossum <guido@python.org> | 1997-07-19 19:48:41 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-07-19 19:48:41 +0000 |
commit | 8fb26ede517491ccb3f1076ee592e8d255549688 (patch) | |
tree | 31be57e0c411c6e03ca4ef1c197c2967ca0518b9 /Python/getcompiler.c | |
parent | f6ca6aa8696ff232d2c755fb97cf9264c753d036 (diff) | |
download | cpython-git-8fb26ede517491ccb3f1076ee592e8d255549688.tar.gz |
Make it return a _const_ char*.
Diffstat (limited to 'Python/getcompiler.c')
-rw-r--r-- | Python/getcompiler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getcompiler.c b/Python/getcompiler.c index 57240eb592..93329905a0 100644 --- a/Python/getcompiler.c +++ b/Python/getcompiler.c @@ -51,7 +51,7 @@ PERFORMANCE OF THIS SOFTWARE. #endif /* !COMPILER */ -char * +const char * Py_GetCompiler() { return COMPILER; |