home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware 1 2 the Maxx
/
sw_1.zip
/
sw_1
/
PROGRAM
/
DJDEV106.ZIP
/
INCLUDE
/
VARARGS.H
< prev
Wrap
C/C++ Source or Header
|
1992-03-09
|
2KB
|
75 lines
/* This file may have been modified by DJ Delorie (Jan 1991). If so,
** these modifications are Coyright (C) 1991 DJ Delorie, 24 Kirsten Ave,
** Rochester NH, 03867-2954, USA.
*/
#if 0
#include <stdarg.h>
#else
#ifndef __GNUC__
/* Use the system's macros with the system's compiler. */
#include <varargs.h>
#else
#ifdef __spur__
#include "va-spur.h"
#else
#ifdef __mips__
#include "va-mips.h"
#else
#ifdef __i860__
#include "va-i860.h"
#else
#ifdef __pyr__
#include "va-pyr.h"
#else
#ifdef __NeXT__
/* On Next, erase any vestiges of stdarg.h. */
#undef va_alist
#undef va_dcl
#undef va_list
#undef va_start
#undef va_end
#undef __va_rounded_size
#undef va_arg
/* Record that varargs.h is defined; this turns off stdarg.h. */
#ifndef _VARARGS_H
#define _VARARGS_H
#endif
#endif /* __NeXT__ */
/* These macros implement traditional (non-ANSI) varargs
for GNU C. */
#define va_alist __builtin_va_alist
#define va_dcl int __builtin_va_alist;
#define va_list char *
#ifdef __sparc__
#define va_start(AP) \
(__builtin_saveregs (), \
AP = ((void *) &__builtin_va_alist))
#else
#define va_start(AP) AP=(char *) &__builtin_va_alist
#endif
#define va_end(AP)
#define __va_rounded_size(TYPE) \
(((sizeof (TYPE) + sizeof (int) - 1) / sizeof (int)) * sizeof (int))
#define va_arg(AP, TYPE) \
(AP += __va_rounded_size (TYPE), \
*((TYPE *) (AP - __va_rounded_size (TYPE))))
#endif /* not pyr */
#endif /* not i860 */
#endif /* not mips */
#endif /* not spur */
#endif /* __GNUC__ */
#endif /* 1 */