* top.c (user_args): Remove unused declaration.

This commit is contained in:
Eli Zaretskii 2001-05-17 15:05:32 +00:00
parent d1778b88f8
commit a577b05c32
2 changed files with 4 additions and 15 deletions

View File

@ -1,3 +1,7 @@
2001-05-17 Eli Zaretskii <eliz@is.elta.co.il>
* top.c (user_args): Remove unused declaration.
2001-05-16 Michael Snyder <msnyder@redhat.com>
* infcmd.c (do_registers_info): Move alloca outside of loop.

View File

@ -224,21 +224,6 @@ int target_executing = 0;
/* Level of control structure. */
static int control_level;
/* Structure for arguments to user defined functions. */
#define MAXUSERARGS 10
struct user_args
{
struct user_args *next;
struct
{
char *arg;
int len;
}
a[MAXUSERARGS];
int count;
}
*user_args;
/* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
#ifndef STOP_SIGNAL