diff options
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ void err(char *format, ...) { } #endif -char *stringcopy(char *s, int len) { +char *stringcopy(const char *s, int len) { char *r; if (!len) len = strlen(s); |