boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

aarch64-stdarg-array.before (311B)


      1 #elif defined(__aarch64__)
      2 typedef struct {
      3     void *__stack;
      4     void *__gr_top;
      5     void *__vr_top;
      6     int   __gr_offs;
      7     int   __vr_offs;
      8 } va_list;
      9 #define va_start(ap, last) __va_start(ap, last)
     10 #define va_arg(ap, type) __va_arg(ap, type)
     11 #define va_end(ap)
     12 #define va_copy(dest, src) ((dest) = (src))