logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

stdarg.h (351B)


  1. #ifndef _STDARG_H
  2. #define _STDARG_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #define __NEED_va_list
  7. #include <bits/alltypes.h>
  8. #define va_start(v,l) __builtin_va_start(v,l)
  9. #define va_end(v) __builtin_va_end(v)
  10. #define va_arg(v,l) __builtin_va_arg(v,l)
  11. #define va_copy(d,s) __builtin_va_copy(d,s)
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15. #endif