Quote:
Originally Posted by Mark McLeod
stdarg.h is included by stdio.h
It is simply the first true line of code the compiler encounters when #include <stdio.h> is used and it can recognize that an error has occurred. The error won't be in the system files, but in .c files you have touched.
Usually I've seen this when random characters are accidentally typed on the very first line of a .c file.
Take a look to see if anything has been typed BEFORE the
/******************
on the very top line of the .c files you've been modifying.
|
That was it! Thanks... I didn't find in the files I had been in, so I went through the others, and behold, there was a random "v" as the first character of the file.
Thanks a bunch for your help!
Jedd