diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-07-08 10:48:33 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-07-08 10:48:33 +0000 |
commit | 0427110e4f7e3d1cd4951a5d4ed7e1bc94637259 (patch) | |
tree | b0d6ec4717c57c56f6c9eef0c3a35d9d3c4f34b7 /sys/ddb/db_extern.h | |
parent | ccd6fc9178847141a460dbc67c20f8c222c3c1da (diff) |
Let the count of symbols be long, so the nlist array will get proper
alignment everywhere.
Diffstat (limited to 'sys/ddb/db_extern.h')
-rw-r--r-- | sys/ddb/db_extern.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_extern.h b/sys/ddb/db_extern.h index 145f6254e8d..00e318509ab 100644 --- a/sys/ddb/db_extern.h +++ b/sys/ddb/db_extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_extern.h,v 1.8 1997/05/29 03:28:44 mickey Exp $ */ +/* $OpenBSD: db_extern.h,v 1.9 1997/07/08 10:48:32 niklas Exp $ */ /* $NetBSD: db_extern.h,v 1.1 1996/02/05 01:57:00 christos Exp $ */ /* @@ -33,7 +33,7 @@ #define _DDB_DB_EXTERN_H_ /* db_aout.c */ -void X_db_sym_init __P((int *, char *, char *)); +void X_db_sym_init __P((long *, char *, char *)); size_t X_db_nsyms __P((db_symtab_t)); db_sym_t X_db_isym __P((db_symtab_t, size_t)); db_sym_t X_db_lookup __P((db_symtab_t, char *)); |