home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fish 'n' More 2
/
fishmore-publicdomainlibraryvol.ii1991xetec.iso
/
fish
/
libraries
/
cclib
/
include
/
stdarg.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-11-02
|
243b
|
12 lines
#ifndef STDARGS_H
#define STDARGS_H 1
typedef unsigned char *va_list;
#define va_start(ap, lastarg) ((ap) = (va_list)(&lastarg + 1))
#define va_arg(ap, type) ((ap) += sizeof(type), ((type *)(ap))[-1])
#define va_end(ap) ((ap) = 0L)
#endif