* printcmd.c: Remove __INT_VARARGS_H code; now in xm-m88k.h.
This commit is contained in:
parent
22202966ce
commit
8acf767cf1
1 changed files with 7 additions and 2 deletions
|
@ -1761,6 +1761,11 @@ printf_command (arg, from_tty)
|
||||||
int nargs_wanted;
|
int nargs_wanted;
|
||||||
int lcount;
|
int lcount;
|
||||||
int i;
|
int i;
|
||||||
|
/* We build up a va_list to pass to vprintf. This is unnecessary;
|
||||||
|
instead of calling vprintf ("%d%f", <constructed va_list>) we
|
||||||
|
could just call printf ("%d", arg1); printf ("%f", arg2);. Funny
|
||||||
|
how I thought of that right *after* I the MAKEVA stuff pretty much
|
||||||
|
working... */
|
||||||
makeva_list *args_makeva;
|
makeva_list *args_makeva;
|
||||||
|
|
||||||
argclass = (enum argclass *) alloca (strlen (s) * sizeof *argclass);
|
argclass = (enum argclass *) alloca (strlen (s) * sizeof *argclass);
|
||||||
|
|
Loading…
Add table
Reference in a new issue