Commit 1f1e1545 by Kaveh R. Ghazi Committed by Jeff Law

prefix.c: Use stdarg.h only ifdef __STDC__.

        * prefix.c: Use stdarg.h only ifdef __STDC__.  Otherwise,
        use varargs.h.  Wrap header with <>, not "".

From-SVN: r16482
parent daa4b717
Thu Nov 13 20:29:08 1997 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* prefix.c: Use stdarg.h only ifdef __STDC__. Otherwise,
use varargs.h. Wrap header with <>, not "".
Thu Nov 13 20:21:17 1997 Jeffrey A Law (law@cygnus.com)
* integrate.c (save_for_inline_copying): Add return value from
......
......@@ -65,7 +65,11 @@ Boston, MA 02111-1307, USA. */
#include "config.h"
#include "gansidecl.h"
#include "stdarg.h"
#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#ifdef _WIN32
#include <windows.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment