Since the split into random and descriptive IDs, the section on game seeds has
[sgt/puzzles] / malloc.c
index 5e11ac0..fd0ddf9 100644 (file)
--- a/malloc.c
+++ b/malloc.c
@@ -3,6 +3,7 @@
  */
 
 #include <stdlib.h>
+#include <string.h>
 #include "puzzles.h"
 
 /*
@@ -45,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;