Author Topic: [68k C] Parse Eeror at end of input (TIGCC C)  (Read 5643 times)

0 Members and 1 Guest are viewing this topic.

Offline bfr

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 819
  • Rating: +4/-0
    • View Profile
    • bfr's website
[68k C] Parse Eeror at end of input (TIGCC C)
« 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] = {
 

Offline Ranman

  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1354
  • Rating: +83/-0
    • View Profile
[68k C] Parse Eeror at end of input (TIGCC C)
« Reply #1 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.
Ranman
Bringing Randy Glover's Jumpman to the TI-89 calculator. Download available at Ticalc.

Offline bfr

  • LV8 Addict (Next: 1000)
  • ********
  • Posts: 819
  • Rating: +4/-0
    • View Profile
    • bfr's website
[68k C] Parse Eeror at end of input (TIGCC C)
« Reply #2 on: May 21, 2006, 02:49:00 am »
Thanks, Ranman, that was the problem.  

saubue

  • Guest
[68k C] Parse Eeror at end of input (TIGCC C)
« Reply #3 on: May 21, 2006, 02:49:00 am »
I think the closing '}' of the start-function itself is missing...