long long ext_arg[MAX_ARGS]; /* System call arguments */
#endif
long u_rval; /* (first) return value */
-#ifdef HAVE_LONG_LONG
- long long u_lrval; /* long long return value */
-#endif
int ptrace_errno;
#if SUPPORTED_PERSONALITIES > 1
int currpers; /* Personality at the time of scno update */
#define RVAL_HEX 001 /* hex format */
#define RVAL_OCTAL 002 /* octal format */
#define RVAL_UDECIMAL 003 /* unsigned decimal format */
-#define RVAL_LDECIMAL 004 /* long decimal format */
-#define RVAL_LHEX 005 /* long hex format */
-#define RVAL_LOCTAL 006 /* long octal format */
-#define RVAL_LUDECIMAL 007 /* long unsigned decimal format */
-#define RVAL_MASK 007 /* mask for these values */
+#define RVAL_MASK 003 /* mask for these values */
#define RVAL_STR 010 /* Print `auxstr' field after return val */
#define RVAL_NONE 020 /* Print nothing */
case RVAL_DECIMAL:
tprintf("= %ld", tcp->u_rval);
break;
-#ifdef HAVE_LONG_LONG
- case RVAL_LHEX:
- tprintf("= %#llx", tcp->u_lrval);
- break;
- case RVAL_LOCTAL:
- tprintf("= %#llo", tcp->u_lrval);
- break;
- case RVAL_LUDECIMAL:
- tprintf("= %llu", tcp->u_lrval);
- break;
- case RVAL_LDECIMAL:
- tprintf("= %lld", tcp->u_lrval);
- break;
-#endif
default:
fprintf(stderr,
"invalid rval format\n");