Omnimaga

Calculator Community => TI Calculators => Calculator C => Topic started by: bfr on May 20, 2006, 01:13:00 pm

Title: [68k C] Parse Eeror at end of input (TIGCC C)
Post by: bfr on May 20, 2006, 01:13:00 pm
I'm getting an error saying, "Parse error at end of input" when I try to build the following C code for TIGCC (I know this code could be better and needs optimization, but I'll do that later):

c1-->
CODE
ec1
#include
#include "extgraph.h"

unsigned char guy[16] = {
 
Title: [68k C] Parse Eeror at end of input (TIGCC C)
Post by: Ranman on May 20, 2006, 03:38:00 pm
I found your parsing problem...

You are missing a closing bracket somewhere near the end of your start( ) function.
Title: [68k C] Parse Eeror at end of input (TIGCC C)
Post by: bfr on May 21, 2006, 02:49:00 am
Thanks, Ranman, that was the problem.  
Title: [68k C] Parse Eeror at end of input (TIGCC C)
Post by: saubue on May 21, 2006, 02:49:00 am
I think the closing '}' of the start-function itself is missing...