summaryrefslogtreecommitdiff
path: root/ddb
diff options
context:
space:
mode:
Diffstat (limited to 'ddb')
-rw-r--r--ddb/db_command.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ddb/db_command.c b/ddb/db_command.c
index cb14da8..6cca94b 100644
--- a/ddb/db_command.c
+++ b/ddb/db_command.c
@@ -102,9 +102,9 @@ db_cmd_search(name, table, cmdp)
int result = CMD_NONE;
for (cmd = table; cmd->name != 0; cmd++) {
- register char *lp;
- register char *rp;
- register int c;
+ char *lp;
+ char *rp;
+ int c;
lp = name;
rp = cmd->name;
@@ -143,7 +143,7 @@ void
db_cmd_list(table)
struct db_command *table;
{
- register struct db_command *cmd;
+ struct db_command *cmd;
for (cmd = table; cmd->name != 0; cmd++) {
db_printf("%-12s", cmd->name);
@@ -538,7 +538,7 @@ db_option(modif, option)
char *modif;
int option;
{
- register char *p;
+ char *p;
for (p = modif; *p; p++)
if (*p == option)