Thread: to C or C++
View Single Post
Old 04-30-2004, 02:53 PM   #4 (permalink)
joe_bruin
LOAD "*",8,1
 
Join Date: Feb 2003
Location: la.ca.us
Posts: 254
joe_bruin is on a distinguished road
Quote:
Originally posted by Valmont
New C:
Code:
#include <cstdarg>
this is wrong. neither the C99 spec (the latest ANSI C standard), nor any standard before it allow this. the standard specifically specifies it the way it has always been:

Code:
#include <stdarg.h>
joe_bruin is offline   Reply With Quote