X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=as%2Fmcs51%2Faslex.c;h=42a66ab1262ec214e2810c75641c8be72c4950ac;hb=f24b05a6e4805ab470ab0deba8a218684438603a;hp=12dade5f97aa93fecbc03a02ad82ed059a54904a;hpb=1b938a5aed15c13cd3e4d5d4a6e2da7c08e87c9d;p=fw%2Fsdcc diff --git a/as/mcs51/aslex.c b/as/mcs51/aslex.c index 12dade5f..42a66ab1 100644 --- a/as/mcs51/aslex.c +++ b/as/mcs51/aslex.c @@ -15,7 +15,6 @@ #include #include #include -#include #include "asm.h" /*)Module aslex.c @@ -27,7 +26,7 @@ * char endline() * char get() * VOID getid(id,c) - * int getline() + * int as_getline() * int getmap() * char getnb() * VOID getst() @@ -353,9 +352,9 @@ getmap(d) return (c); } -/*)Function int getline() +/*)Function int as_getline() * - * The function getline() reads a line of assembler-source text + * The function as_getline() reads a line of assembler-source text * from an assembly source text file or an include file. * Lines of text are processed from assembler-source files until * all files have been read. If an include file is opened then @@ -363,7 +362,7 @@ getmap(d) * include file) until the end of the include file is found. * The input text line is copied into the global string ib[] * and converted to a NULL terminated string. The function - * getline() returns a (1) after succesfully reading a line + * as_getline() returns a (1) after succesfully reading a line * or a (0) if all files have been read. * * local variables: @@ -400,7 +399,7 @@ getmap(d) */ int -getline() +as_getline() { loop: if (incfil >= 0) { if (fgets(ib, sizeof ib, ifp[incfil]) == NULL) {