home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
291.lha
/
CcLib_v1.2
/
include
/
stdarg.h
< prev
next >
Wrap
C/C++ Source or Header
|
1989-10-07
|
229b
|
12 lines
#ifndef STDARGS_H
#define STDARGS_H 1
typedef unsigned char *va_list;
#define va_start(ap,lastarg) (ap = ((va_list)&lastarg) + sizeof(lastarg) )
#define va_arg(ap,type) ( *((type *)ap)++ )
#define va_end(ap) (ap = 0L)
#endif