*** empty log message ***

From-SVN: r259
This commit is contained in:
Richard Stallman 1992-01-31 06:51:09 +00:00
parent 4db1857482
commit cc8995d5a7
2 changed files with 10 additions and 0 deletions

View File

@ -104,6 +104,11 @@ enum {
#define __reg_base reg_base
#endif
/* Avoid errors if compiling GCC v2 with GCC v1. */
#if __GNUC__ == 1
#define __extension__
#endif
#define va_arg(__va, __type) \
__extension__ \
(* (__type *) \

View File

@ -29,6 +29,11 @@ typedef char * __va___list;
#define __va_rounded_size(TYPE) \
(((sizeof (TYPE) + sizeof (int) - 1) / sizeof (int)) * sizeof (int))
/* Avoid errors if compiling GCC v2 with GCC v1. */
#if __GNUC__ == 1
#define __extension__
#endif
/* RECORD_TYPE args passed using the C calling convention are
passed by invisible reference. ??? RECORD_TYPE args passed
in the stack are made to be word-aligned; for an aggregate that is