Ayudaría saber qué pretendes hacer. Pero de todas formas prueba esto:
Código:
int main (int argc, char *args[]) {
int c;
printf("Procesando Liquidacion");
/* skip white space */
c = argc();
while (c == ' ' || c == '\t'){
c = argc();
}
/* process numbers */
if (c == '.' || isdigit (c))
{
ungetc (c, stdin);
scanf ("%lf", &yylval);
return NUM;
}
/* return end-of-file */
if (c == EOF) return 0;/* a CNTRL-D from keyboard */
/* return single chars */
return c;
}