aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb/db_sym.h
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1994-08-18 22:36:09 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1994-08-18 22:36:09 +0000
commitf23b4c91c4fb94e1bb6aeb4e7747f4ccf7767b41 (patch)
tree6b83fdf6eb5926c2f3d175a83d24bf5a2611a012 /sys/ddb/db_sym.h
parentfa074287a4952da8528838c7812d02678e4c7205 (diff)
downloadsrc-f23b4c91c4fb94e1bb6aeb4e7747f4ccf7767b41.tar.gz
src-f23b4c91c4fb94e1bb6aeb4e7747f4ccf7767b41.zip
Fix up some sloppy coding practices:
- Delete redundant declarations. - Add -Wredundant-declarations to Makefile.i386 so they don't come back. - Delete sloppy COMMON-style declarations of uninitialized data in header files. - Add a few prototypes. - Clean up warnings resulting from the above. NB: ioconf.c will still generate a redundant-declaration warning, which is unavoidable unless somebody volunteers to make `config' smarter.
Notes
Notes: svn path=/head/; revision=2112
Diffstat (limited to 'sys/ddb/db_sym.h')
-rw-r--r--sys/ddb/db_sym.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/ddb/db_sym.h b/sys/ddb/db_sym.h
index a256b79ed229..d1090cf7123f 100644
--- a/sys/ddb/db_sym.h
+++ b/sys/ddb/db_sym.h
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: db_sym.h,v 1.2 1993/10/16 16:47:27 rgrimes Exp $
+ * $Id: db_sym.h,v 1.3 1993/11/07 17:39:25 wollman Exp $
*/
#ifndef _DDB_DB_SYM_H_
@@ -77,9 +77,6 @@ extern boolean_t db_qualify_ambiguous_names;
extern void db_add_symbol_table();
/* extend the list of symbol tables */
-extern int db_value_of_name(/* char*, db_expr_t* */);
- /* find symbol value given name */
-
extern db_sym_t db_search_symbol(/* db_expr_t, db_strategy_t, int* */);
/* find symbol given value */
@@ -99,4 +96,7 @@ extern int db_eqname(/* char*, char*, char */);
extern void db_printsym(/* db_expr_t, db_strategy_t */);
/* print closest symbol to a value */
+extern boolean_t db_line_at_pc(int, int, int, int);
+extern int X_db_sym_nymargs(db_symtab_t *, db_sym_t, int *, char **);
+
#endif /* _DDB_DB_SYM_H_ */