diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-06-28 19:18:56 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-06-28 19:18:56 +0000 |
commit | 53fc6c46e95847e7fc4a2bdd7927ced344c2f28e (patch) | |
tree | 417324ae0d0b617618a8c957615b8365ed4b93c0 /gdb | |
parent | 6b9561a423d70d6a9d1e452c1a234f65d7de16ff (diff) | |
download | gdb-53fc6c46e95847e7fc4a2bdd7927ced344c2f28e.zip gdb-53fc6c46e95847e7fc4a2bdd7927ced344c2f28e.tar.gz gdb-53fc6c46e95847e7fc4a2bdd7927ced344c2f28e.tar.bz2 |
config/m88k/xm-delta88.h: Remove VPRINTF define, not needed.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/config/m88k/xm-delta88.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gdb/config/m88k/xm-delta88.h b/gdb/config/m88k/xm-delta88.h index 685d596..1fa0214 100644 --- a/gdb/config/m88k/xm-delta88.h +++ b/gdb/config/m88k/xm-delta88.h @@ -49,15 +49,3 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ the ptrace_user offsets are sufficient and KERNEL_U_ADDRESS can be 0 */ #define KERNEL_U_ADDR 0 - -/* Like vprintf, but takes a a pointer to the args, laid out in order, - rather than a va_list. */ -/* Does this really work, or is it just enough to get this to compile? */ -#define VPRINTF(string, args) \ - { \ - __gnuc_va_list list; \ - list.__va_arg = 0; \ - list.__va_stk = (int *) args; \ - list.__va_reg = (int *) args; \ - vprintf (string, list); \ - } |