blob: a792835d4a19772ec0271d1281aa587d80346fdc [file] [log] [blame]
Dmitry V. Levin0c8c5c92015-11-29 00:06:45 +00001static void
2get_error(struct tcb *tcp, const bool check_errno)
3{
4 if (check_errno && is_negated_errno(m68k_d0)) {
5 tcp->u_rval = -1;
6 tcp->u_error = -m68k_d0;
7 } else {
8 tcp->u_rval = m68k_d0;
9 }
Dmitry V. Levind70d1c42015-03-22 22:13:55 +000010}