home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / includ87.lzh / INCLUD87 / STDARG.H < prev    next >
C/C++ Source or Header  |  1993-07-30  |  1KB  |  53 lines

  1. /*
  2.  * STDARG.H
  3.  */
  4.  
  5. #ifndef _STDARG_H
  6. #ifndef va_start    /* in case of varargs being included */
  7. #define    _STDARG_H
  8.  
  9. #ifndef _COMPILER_H
  10. #include <compiler.h>
  11. #endif
  12.  
  13. typedef    __VA_LIST__ va_list;
  14.  
  15. #ifdef __GNUC__
  16.  
  17. /* Amount of space required in an argument list for an arg of type TYPE.
  18.    TYPE may alternatively be an expression whose type is used.  */
  19.  
  20. #define __va_rounded_size(TYPE)  \
  21.   (((sizeof (TYPE) + sizeof (int) - 1) / sizeof (int)) * sizeof (int))
  22.  
  23. #define va_start(AP, LASTARG)                         \
  24.  (AP = ((va_list) __builtin_next_arg ()))
  25.  
  26. #define va_end(AP)
  27.  
  28. /* We cast to void * and then to TYPE * because this avoids
  29.    a warning about increasing the alignment requirement.  */
  30. #define va_arg(AP, TYPE)                                                \
  31.  (AP = (va_list) ((char *) (AP) + __va_rounded_size (TYPE)),    \
  32.  (sizeof(TYPE)<=sizeof(int)? ((TYPE *) (AP))[-1] :                       \
  33.   *((TYPE *) (void *) ((char *) (AP) - __va_rounded_size (TYPE)))))
  34.  
  35. #else
  36.  
  37. # ifdef __TURBOC__
  38. #  define va_start(list, param)   ((list) = ...)
  39. #  define va_arg(list, type)      (*((type *) (list))++)
  40. #  define va_end(list)
  41. # else
  42. #  define va_start(list,param)  list = ((va_list) &(param)) \
  43.                    + ((sizeof(param) + 1) & ~1)
  44. #  define va_arg(list,type)     ((type *)(list += ((sizeof(type) + 1) & ~1)))[-1]
  45. #  define va_end(list)
  46. # endif /* __TURBOC__ */
  47.  
  48. #endif /* __GNUC__ */
  49.  
  50. #endif /* va_start */
  51.  
  52. #endif /* _STDARG_H */
  53.