home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Power 1999 February
/
MACPOWER-1999-02.ISO.7z
/
MACPOWER-1999-02.ISO
/
9902⁄AMUG
/
UTILITY
/
mac06-0.95.sit
/
mac06-0.95
/
usr
/
include
/
stdarg.h
< prev
next >
Wrap
Text File
|
1997-11-19
|
256b
|
14 lines
/* mac06ゥ1997 by HNS/DSITRI hns@computer.org
** stdarg.h
*/
#pragma once
/* valid for PowerPC calling conventions */
#define va_arg(p, type) *(*(type **)&(p))++
#define va_end(p)
#define va_list void *
#define va_start(p, arg) p=(&(arg))+1
/* EOF */