diff options
| author | Guido van Rossum <guido@python.org> | 1990-10-21 22:13:08 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1990-10-21 22:13:08 +0000 |
| commit | 4ab9b4c9adbd5ed42bc163033b3a01572b527ca3 (patch) | |
| tree | 86a07e433fe1eefbe6482677f69c3b3d00dfd6e3 | |
| parent | e87203afde79c8f78f78179eef20e4d8cba01fc0 (diff) | |
| download | cpython-git-4ab9b4c9adbd5ed42bc163033b3a01572b527ca3.tar.gz | |
Changed strdup prototype to use const.
| -rw-r--r-- | Include/objimpl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/objimpl.h b/Include/objimpl.h index 4716517bb9..e6f9929f3d 100644 --- a/Include/objimpl.h +++ b/Include/objimpl.h @@ -28,4 +28,4 @@ extern int StopPrint; /* Set when printing is interrupted */ /* Malloc interface */ #include "malloc.h" -extern char *strdup PROTO((char *)); +extern char *strdup PROTO((const char *)); |
