Search | Google it | Results 1 - 1 of 1 for fundef:SCARG (0.00 seconds) |
142: #ifdef T2EX 143: #define SCARG(p, k) ((p)->a.k) 144: #else /* !T2EX */ 145: #if BYTE_ORDER == BIG_ENDIAN 146: #define SCARG(p,k) ((p)->k.be.datum) /* get arg from args pointer */ 147: #elif BYTE_ORDER == LITTLE_ENDIAN 148: #define SCARG(p,k) ((p)->k.le.datum) /* get arg from args pointer */ 149: #else