home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga ISO Collection
/
AmigaUtilCD2.iso
/
Programming
/
C
/
BC_DICE2.DMS
/
in.adf
/
INCLUDE
/
varargs.h
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1995-01-09
|
286 b
|
17 lines
/*
* $VER: varargs.h 1.0 (17.4.93)
*
* (c)Copyright 1992 Obvious Implementations Corp, All Rights Reserved
*/
#ifndef VARARGS_H
#define VARARGS_H
#ifndef STDARG_H
#include <stdarg.h>
#define va_dcl long va_alist;
#define va_start(pvar) (pvar = (void *)(&va_alist))
#endif
#endif