commit | 4ab9b4c9adbd5ed42bc163033b3a01572b527ca3 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Sun Oct 21 22:13:08 1990 +0000 |
committer | Guido van Rossum <guido@python.org> | Sun Oct 21 22:13:08 1990 +0000 |
tree | 86a07e433fe1eefbe6482677f69c3b3d00dfd6e3 | |
parent | e87203afde79c8f78f78179eef20e4d8cba01fc0 [diff] [blame] |
Changed strdup prototype to use const.
diff --git a/Include/objimpl.h b/Include/objimpl.h index 4716517..e6f9929 100644 --- a/Include/objimpl.h +++ b/Include/objimpl.h
@@ -28,4 +28,4 @@ /* Malloc interface */ #include "malloc.h" -extern char *strdup PROTO((char *)); +extern char *strdup PROTO((const char *));