aboutsummaryrefslogtreecommitdiff
path: root/puzzles.h
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2004-05-04 09:56:38 +0000
committerSimon Tatham <anakin@pobox.com>2004-05-04 09:56:38 +0000
commit2f999a9a595714fe62630b68065cee8d668ba13e (patch)
tree2f7b618dd5f23984ed12c56fe7d8453f7a20dbde /puzzles.h
parent33de1a833e48b3cb8c797134bb279d90d07e65ad (diff)
downloadpuzzles-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 'puzzles.h')
-rw-r--r--puzzles.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/puzzles.h b/puzzles.h
index 035ff24..b7d2804 100644
--- a/puzzles.h
+++ b/puzzles.h
@@ -127,7 +127,7 @@ char *midend_set_config(midend_data *me, int which, config_item *cfg);
void *smalloc(int size);
void *srealloc(void *p, int size);
void sfree(void *p);
-char *dupstr(char *s);
+char *dupstr(const char *s);
#define snew(type) \
( (type *) smalloc (sizeof (type)) )
#define snewn(number, type) \