mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-22 16:32:13 -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:
@ -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) \
|
||||
|
Reference in New Issue
Block a user