diff options
Diffstat (limited to 'Build/source/utils/t1utils/t1asm.c')
-rw-r--r-- | Build/source/utils/t1utils/t1asm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/utils/t1utils/t1asm.c b/Build/source/utils/t1utils/t1asm.c index e3758591f69..17d991277fa 100644 --- a/Build/source/utils/t1utils/t1asm.c +++ b/Build/source/utils/t1utils/t1asm.c @@ -280,7 +280,7 @@ static int check_line_charstring() the newline is put into line[]. When terminated by '{', the '{' is not put into line[], and the flag start_charstring is set to 1. */ -static void getline() +static void texlive_getline() { int c; char *p = line; @@ -721,7 +721,7 @@ particular purpose.\n"); without /Subrs sections and provided a patch. */ while (!feof(ifp) && !ferror(ifp)) { - getline(); + texlive_getline(); if (!ever_active) { if (strncmp(line, "currentfile eexec", 17) == 0 && isspace(line[17])) { @@ -792,7 +792,7 @@ particular purpose.\n"); /* There may be additional code. */ while (!feof(ifp) && !ferror(ifp)) { - getline(); + texlive_getline(); eexec_string(line); } |