Lines Matching defs:X
122 #define LP_ERRMSG(C,X) (void)printf("", C, X)
123 #define LP_ERRMSG1(C,X,A) (void)printf("", C, X, A)
124 #define LP_ERRMSG2(C,X,A1,A2) (void)printf("", C, X, A1, A2)
125 #define LP_ERRMSG3(C,X,A1,A2,A3) (void)printf("", C, X, A1, A2, A3)
129 #define LP_ERRMSG(C,X) \
133 agettxt((X), _m_, MSGSIZ), \
134 agettxt((X+1), _a_, MSGSIZ) \
136 #define LP_ERRMSG1(C,X,A) \
140 fmt1((X), A), \
141 agettxt((X+1), _a_, MSGSIZ) \
143 #define LP_ERRMSG2(C,X,A1,A2) \
147 fmt2((X), A1, A2), \
148 agettxt((X+1), _a_, MSGSIZ) \
150 #define LP_ERRMSG3(C,X,A1,A2,A3) \
154 fmt3((X), A1, A2, A3), \
155 agettxt((X+1), _a_, MSGSIZ) \
161 #define fmt1(X,A) (vsnp(_m_, MSGSIZ, agettxt((X),_f_,MSGSIZ), A), _m_)
162 #define fmt2(X,A,B) (vsnp(_m_, MSGSIZ, agettxt((X),_f_,MSGSIZ), A,B), _m_)
163 #define fmt3(X,A,B,C) (vsnp(_m_, MSGSIZ, agettxt((X),_f_,MSGSIZ), A,B,C), _m_)