diff options
Diffstat (limited to 'xmalloc.c')
-rw-r--r-- | xmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ xmalloc (int n) return(p); } -char *xstrdup(char *s) +char *xstrdup(const char *s) { char *p; p = (char *) xmalloc(strlen(s)+1); |