mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-20 23:51:29 -07:00
dupstr() should take a const char *. In particular, this allows
compilation under GTK 2. [originally from svn r4198]
This commit is contained in:
2
malloc.c
2
malloc.c
@ -46,7 +46,7 @@ void *srealloc(void *p, int size) {
|
||||
* dupstr is like strdup, but with the never-return-NULL property
|
||||
* of smalloc (and also reliably defined in all environments :-)
|
||||
*/
|
||||
char *dupstr(char *s) {
|
||||
char *dupstr(const char *s) {
|
||||
char *r = smalloc(1+strlen(s));
|
||||
strcpy(r,s);
|
||||
return r;
|
||||
|
Reference in New Issue
Block a user