diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2001-07-04 23:14:57 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2001-07-04 23:14:57 +0000 |
commit | 2ede71b20e42d2f74d0298d6358b37726dc3dc67 (patch) | |
tree | 0124ebbc6d29caf69d8f0f322244747e5e5cb461 /sys/ddb | |
parent | 3c3c8e0b30db1bf4ef13d732ae4521e855b1a235 (diff) |
Make preprocessor happier, don't give it untasty tokens at end of input.
Ok millert@
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_output.c | 4 | ||||
-rw-r--r-- | sys/ddb/db_run.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sys/ddb/db_output.c b/sys/ddb/db_output.c index 84bb1132255..75f4e276d3e 100644 --- a/sys/ddb/db_output.c +++ b/sys/ddb/db_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_output.c,v 1.14 1997/11/04 20:45:15 chuck Exp $ */ +/* $OpenBSD: db_output.c,v 1.15 2001/07/04 23:14:53 espie Exp $ */ /* $NetBSD: db_output.c,v 1.13 1996/04/01 17:27:14 christos Exp $ */ /* @@ -66,7 +66,7 @@ #ifndef DB_MAX_LINE #define DB_MAX_LINE 24 /* maximum line */ #define DB_MAX_WIDTH 80 /* maximum width */ -#endif DB_MAX_LINE +#endif /* DB_MAX_LINE */ #define DB_MIN_MAX_WIDTH 20 /* minimum max width */ #define DB_MIN_MAX_LINE 3 /* minimum max line */ diff --git a/sys/ddb/db_run.c b/sys/ddb/db_run.c index be4316515b4..8cd3a4545cd 100644 --- a/sys/ddb/db_run.c +++ b/sys/ddb/db_run.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_run.c,v 1.13 2001/01/24 09:38:03 hugh Exp $ */ +/* $OpenBSD: db_run.c,v 1.14 2001/07/04 23:14:53 espie Exp $ */ /* $NetBSD: db_run.c,v 1.8 1996/02/05 01:57:12 christos Exp $ */ /* @@ -210,7 +210,7 @@ db_restart_at_pc(regs, watchpt) db_load_count += inst_load(ins); db_store_count += inst_store(ins); } -#endif SOFTWARE_SSTEP +#endif /* SOFTWARE_SSTEP */ } if (db_run_mode == STEP_CONTINUE) { @@ -410,4 +410,4 @@ db_clear_single_step(regs) } } -#endif SOFTWARE_SSTEP +#endif /* SOFTWARE_SSTEP */ |