va_list.h: New file.
* alpha/va_list.h: New file. * alpha/x-alpha (EXTRA_HEADERS): New. Add va_list.h. From-SVN: r22137
This commit is contained in:
parent
7c1cc8097d
commit
cce7231983
3 changed files with 22 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Aug 31 13:57:55 1998 Richard Henderson <rth@cygnus.com>
|
||||
|
||||
* alpha/va_list.h: New file.
|
||||
* alpha/x-alpha (EXTRA_HEADERS): New. Add va_list.h.
|
||||
|
||||
Mon Aug 31 14:55:02 1998 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* NEWS: Fix typos.
|
||||
|
|
16
gcc/config/alpha/va_list.h
Normal file
16
gcc/config/alpha/va_list.h
Normal file
|
@ -0,0 +1,16 @@
|
|||
/* A replacement for Digital Unix's <va_list.h>. */
|
||||
|
||||
#include <va-alpha.h>
|
||||
|
||||
#if !defined(_VA_LIST) && !defined(_HIDDEN_VA_LIST)
|
||||
#define _VA_LIST
|
||||
typedef __gnuc_va_list va_list;
|
||||
|
||||
#elif defined(_HIDDEN_VA_LIST) && !defined(_HIDDEN_VA_LIST_DONE)
|
||||
#define _HIDDEN_VA_LIST_DONE
|
||||
typedef __gnuc_va_list __va_list;
|
||||
|
||||
#elif defined(_HIDDEN_VA_LIST) && defined(_VA_LIST)
|
||||
#undef _HIDDEN_VA_LIST
|
||||
|
||||
#endif
|
|
@ -1 +1,2 @@
|
|||
CLIB=-lmld
|
||||
EXTRA_HEADERS = $(srcdir)/config/alpha/va_list.h
|
||||
|
|
Loading…
Add table
Reference in a new issue