X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=token.c;h=4769365843bc98ae6c8eef1509f244aca63cdcc5;hb=af75875e8faedae0deb5571f503a9c0f521ff298;hp=1496f353e68175f69ea0ed18663c0ed478b406cf;hpb=b4e35bf2387e9b22ae6a97bad28daa8a438483ed;p=cparser diff --git a/token.c b/token.c index 1496f35..4769365 100644 --- a/token.c +++ b/token.c @@ -84,6 +84,9 @@ void print_token(FILE *f, const token_t *token) case T_INTEGER: fprintf(f, "integer number %d", token->v.intvalue); break; + case T_FLOATINGPOINT: + fprintf(f, "floatingpointer number %f", token->v.floatvalue); + break; case T_STRING_LITERAL: fprintf(f, "string '%s'", token->v.string); break;