Changed strdup prototype to use const.

This commit is contained in:
Guido van Rossum 1990-10-21 22:13:08 +00:00
parent e87203afde
commit 4ab9b4c9ad
1 changed files with 1 additions and 1 deletions

View File

@ -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 *));