]> git.sur5r.net Git - cc65/blobdiff - src/cc65/scanner.c
Removed unneeded include files.
[cc65] / src / cc65 / scanner.c
index 2f9b019aff7685d57ed88ac8ec68975511b1e3e1..360305852c1be7b13e7ad2ee583ae765c6d15b45 100644 (file)
@@ -205,8 +205,9 @@ static int SkipWhite (void)
 int TokIsFuncSpec (const Token* T)
 /* Return true if the token is a function specifier */
 {
-    return (T->Tok == TOK_INLINE) || (T->Tok == TOK_FASTCALL) ||
-           (T->Tok == TOK_NEAR)   || (T->Tok == TOK_FAR);
+    return (T->Tok == TOK_INLINE)   ||
+           (T->Tok == TOK_FASTCALL) || (T->Tok == TOK_CDECL) ||
+           (T->Tok == TOK_NEAR)     || (T->Tok == TOK_FAR);
 }