xstrdup now takes a const pointer as an argument.

This commit is contained in:
Ivo Timmermans 2000-11-29 14:23:08 +00:00
parent 54ef13bf75
commit 8ea23d9ec3
2 changed files with 2 additions and 2 deletions

View file

@ -127,7 +127,7 @@ xrealloc (p, n)
/* Duplicate a string */
char *xstrdup(char *s)
char *xstrdup(const char *s)
{
char *p;