mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
GCC no longer supports <varargs.h>, change to <stdarg.h>
This commit is contained in:
parent
c884521619
commit
546683e176
1 changed files with 5 additions and 1 deletions
|
@ -39,7 +39,11 @@ static char rcs_id[] = "$XConsortium: TermPrimDebug.c /main/4 1996/11/21 19:58:1
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <varargs.h>
|
#if !defined(linux)
|
||||||
|
# include <varargs.h>
|
||||||
|
#else
|
||||||
|
# include <stdarg.h>
|
||||||
|
#endif
|
||||||
#include "TermHeader.h"
|
#include "TermHeader.h"
|
||||||
#include "TermPrimDebug.h"
|
#include "TermPrimDebug.h"
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue