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 | 25b8cb22498ea05b68cdce1b6e561af39cde6217 (patch) | |
tree | 6a11871ce283da4e63cc69cf2c79625bc65b49b6 /Python/getcompiler.c | |
parent | f09f8007e3790754952e140765ee6b257ea13f9a (diff) | |
download | cpython-25b8cb22498ea05b68cdce1b6e561af39cde6217.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; |