]> git.sur5r.net Git - cc65/blobdiff - src/cc65/scanner.c
Renamed the functions working with "struct Function".
[cc65] / src / cc65 / scanner.c
index 3584a56a138e46d330ddc5e64ed0a6f2c6d4b638..0ad5580a2914dbe034f57682d99cc25a6b0a10c3 100644 (file)
@@ -547,7 +547,7 @@ void NextToken (void)
            } else if (strcmp (token, "__func__") == 0) {
                /* __func__ is only defined in functions */
                if (CurrentFunc) {
-                   NextTok.IVal = AddLiteral (GetFuncName (CurrentFunc));
+                   NextTok.IVal = AddLiteral (F_GetFuncName (CurrentFunc));
                    NextTok.Tok  = TOK_SCONST;
                    return;
                }
@@ -805,7 +805,7 @@ void SkipTokens (const token_t* TokenList, unsigned TokenCount)
 /* Skip tokens until we reach TOK_CEOF or a token in the given token list.
  * This routine is used for error recovery.
  */
-{                                                             
+{
     while (CurTok.Tok != TOK_CEOF) {
 
        /* Check if the current token is in the token list */