diff options
| author | Simon Tatham <anakin@pobox.com> | 2004-05-04 09:56:38 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2004-05-04 09:56:38 +0000 |
| commit | 2f999a9a595714fe62630b68065cee8d668ba13e (patch) | |
| tree | 2f7b618dd5f23984ed12c56fe7d8453f7a20dbde /malloc.c | |
| parent | 33de1a833e48b3cb8c797134bb279d90d07e65ad (diff) | |
| download | puzzles-2f999a9a595714fe62630b68065cee8d668ba13e.zip puzzles-2f999a9a595714fe62630b68065cee8d668ba13e.tar.gz puzzles-2f999a9a595714fe62630b68065cee8d668ba13e.tar.bz2 puzzles-2f999a9a595714fe62630b68065cee8d668ba13e.tar.xz | |
dupstr() should take a const char *. In particular, this allows
compilation under GTK 2.
[originally from svn r4198]
Diffstat (limited to 'malloc.c')
| -rw-r--r-- | malloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |