View Single Post
  #2   Spotlight this post!  
Unread 23-01-2007, 20:33
Orborde Orborde is offline
Registered User
FRC #1747
Team Role: Mentor
 
Join Date: Apr 2004
Rookie Year: 2003
Location: Indianapolis, IN
Posts: 44
Orborde has a spectacular aura aboutOrborde has a spectacular aura about
Send a message via AIM to Orborde
Re: stdarg.h Syntax error

I have a hunch that you messed something up near the beginning of the file, and the stdarg.h error is simply the compiler complaining as a result of something in your file. For example:

Code:
int foo = 6 // no semicolon!
#include <stdio.h>
will tend to give you an error in stdio.h, even though the problem is in the original file. Take a look at the top of your file for syntax errors.