home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 10
/
Fresh_Fish_10_2352.bin
/
new
/
dev
/
c
/
dice
/
include
/
varargs.h
< prev
Wrap
C/C++ Source or Header
|
1994-02-01
|
256b
|
17 lines
/*
* VARARGS.H
*
* (c)Copyright 1990, Matthew Dillon, 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