Home | History | Annotate | Download | only in libasm

Lines Matching full:error

0 /* Error handling in libasm.
29 /* The error number. Used in non-threaded programs. */
105 /* Return the appropriate message for the error. */
108 [ASM_E_NOERROR] = N_("no error"),
119 asm_errmsg (error)
120 int error;
127 if ((error == 0 || error == -1) && threaded)
148 if (error < -1)
149 return _("Unknown error");
150 if (error == 0 && last_error == 0)
151 /* No error. */
154 if (error != -1)
155 last_error = error;