From owner-freebsd-commit Fri Nov 24 06:14:03 1995 Return-Path: owner-commit Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA21182 for freebsd-commit-outgoing; Fri, 24 Nov 1995 06:14:03 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA21170 for cvs-all-outgoing; Fri, 24 Nov 1995 06:14:01 -0800 Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA21156 for cvs-sys-outgoing; Fri, 24 Nov 1995 06:13:58 -0800 Received: (from bde@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id GAA21137 ; Fri, 24 Nov 1995 06:13:44 -0800 Date: Fri, 24 Nov 1995 06:13:44 -0800 From: Bruce Evans Message-Id: <199511241413.GAA21137@freefall.freebsd.org> To: CVS-commiters, cvs-sys Subject: cvs commit: src/sys/ddb db_access.c db_aout.c db_break.c db_command.c db_examine.c db_expr.c db_input.c db_lex.c db_output.c db_print.c db_run.c db_sym.c db_variables.c db_watch.c Sender: owner-commit@FreeBSD.ORG Precedence: bulk bde 95/11/24 06:13:43 Modified: sys/ddb db_access.c db_aout.c db_break.c db_command.c db_examine.c db_expr.c db_input.c db_lex.c db_output.c db_print.c db_run.c db_sym.c db_variables.c db_watch.c Log: Completed function declarations and/or added prototypes and/or #includes to get the prototypes. Changed some `int's to `boolean_t's. boolean_t's are ints so they are hard to distinguish from ints. Converted function headers to old-style. ddb is written in K&R1 C except where we broke it.