Make all headers idempotent. All incorrect common data moved out of header

files and into a related source file.
This commit is contained in:
Garrett Wollman 1993-11-07 17:39:25 +00:00
parent 024253188b
commit 6437fb2c06
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=716
5 changed files with 25 additions and 5 deletions

View File

@ -23,9 +23,12 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id$
* $Id: db_access.h,v 1.2 1993/10/16 16:47:05 rgrimes Exp $
*/
#ifndef _DDB_DB_ACCESS_H_
#define _DDB_DB_ACCESS_H_ 1
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
@ -41,3 +44,4 @@ extern db_expr_t db_get_value(/* db_addr_t addr,
extern void db_put_value(/* db_addr_t addr,
int size,
db_expr_t value */);
#endif /* _DDB_DB_ACCESS_H_ */

View File

@ -23,9 +23,12 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id$
* $Id: db_command.h,v 1.2 1993/10/16 16:47:12 rgrimes Exp $
*/
#ifndef _DDB_DB_COMMAND_H_
#define _DDB_DB_COMMAND_H_ 1
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
@ -51,3 +54,4 @@ extern db_addr_t db_next; /* next address to be examined
or written */
#endif /* _DDB_DB_COMMAND_H_ */

View File

@ -23,9 +23,12 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id$
* $Id: db_lex.h,v 1.2 1993/10/16 16:47:19 rgrimes Exp $
*/
#ifndef _DDB_DB_LEX_H_
#define _DDB_DB_LEX_H_ 1
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 7/90
@ -71,3 +74,4 @@ extern int db_radix;
#endif /* _DDB_DB_LEX_H_ */

View File

@ -23,9 +23,12 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id$
* $Id: db_output.h,v 1.2 1993/10/16 16:47:21 rgrimes Exp $
*/
#ifndef _DDB_DB_OUTPUT_H_
#define _DDB_DB_OUTPUT_H_ 1
/*
* Author: David B. Golub, Carnegie Mellon University
* Date: 8/90
@ -39,3 +42,4 @@ extern void db_force_whitespace();
extern int db_print_position();
extern void db_end_line();
extern int db_printf();
#endif /* _DDB_DB_OUTPUT_H_ */

View File

@ -23,9 +23,12 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id$
* $Id: db_sym.h,v 1.2 1993/10/16 16:47:27 rgrimes Exp $
*/
#ifndef _DDB_DB_SYM_H_
#define _DDB_DB_SYM_H_ 1
/*
* Author: Alessandro Forin, Carnegie Mellon University
* Date: 8/90
@ -96,3 +99,4 @@ extern int db_eqname(/* char*, char*, char */);
extern void db_printsym(/* db_expr_t, db_strategy_t */);
/* print closest symbol to a value */
#endif /* _DDB_DB_SYM_H_ */