diff options
Diffstat (limited to 'Build/source/texk/kpathsea/xstrdup.c')
-rw-r--r-- | Build/source/texk/kpathsea/xstrdup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/kpathsea/xstrdup.c b/Build/source/texk/kpathsea/xstrdup.c index 6afe72f5efa..738421874e8 100644 --- a/Build/source/texk/kpathsea/xstrdup.c +++ b/Build/source/texk/kpathsea/xstrdup.c @@ -22,7 +22,7 @@ /* Return a copy of S in new storage. */ string -xstrdup P1C(const_string, s) +xstrdup (const_string s) { string new_string = (string)xmalloc(strlen (s) + 1); return strcpy(new_string, s); |