1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

GCC no longer supports <varargs.h>, change to <stdarg.h>

This commit is contained in:
Peter Howkins 2012-03-11 14:21:26 +00:00
parent c884521619
commit 546683e176

View file

@ -39,7 +39,11 @@ static char rcs_id[] = "$XConsortium: TermPrimDebug.c /main/4 1996/11/21 19:58:1
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <varargs.h>
#if !defined(linux)
# include <varargs.h>
#else
# include <stdarg.h>
#endif
#include "TermHeader.h"
#include "TermPrimDebug.h"
#include <signal.h>