efistdarg.h 425 B

12345678910111213141516171819202122232425262728
  1. #ifndef _EFISTDARG_H_
  2. #define _EFISTDARG_H_
  3. /*++
  4. Copyright (c) 1998 Intel Corporation
  5. Module Name:
  6. devpath.h
  7. Abstract:
  8. Defines for parsing the EFI Device Path structures
  9. Revision History
  10. --*/
  11. typedef __builtin_va_list va_list;
  12. #define va_start(v,l) __builtin_va_start(v,l)
  13. #define va_end(v) __builtin_va_end(v)
  14. #define va_arg(v,l) __builtin_va_arg(v,l)
  15. #define va_copy(d,s) __builtin_va_copy(d,s)
  16. #endif