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 >
Text File  |  1997-11-19  |  256b  |  14 lines

  1. /* mac06ゥ1997 by HNS/DSITRI hns@computer.org
  2. ** stdarg.h
  3. */
  4.  
  5. #pragma once
  6.  
  7. /* valid for PowerPC calling conventions */
  8.  
  9. #define va_arg(p, type)            *(*(type **)&(p))++
  10. #define va_end(p)
  11. #define va_list void *
  12. #define va_start(p, arg)        p=(&(arg))+1
  13.  
  14. /* EOF */