diff options
author | phk <phk@FreeBSD.org> | 1995-11-29 10:25:50 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-11-29 10:25:50 +0000 |
commit | 6056f81916a007badc44587b720c1bc308265cae (patch) | |
tree | 04a837dcdadd73fa6cc99eaeb902219e812b9833 /sys/ddb/db_aout.c | |
parent | 051ce4c479c45d09eeaf7abcee957e6330406458 (diff) | |
download | FreeBSD-src-6056f81916a007badc44587b720c1bc308265cae.zip FreeBSD-src-6056f81916a007badc44587b720c1bc308265cae.tar.gz |
Staticized and '#ifdef notused' stuff we don't use.
Diffstat (limited to 'sys/ddb/db_aout.c')
-rw-r--r-- | sys/ddb/db_aout.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/ddb/db_aout.c b/sys/ddb/db_aout.c index 743c1be..edf811d 100644 --- a/sys/ddb/db_aout.c +++ b/sys/ddb/db_aout.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_aout.c,v 1.11 1995/05/30 07:56:49 rgrimes Exp $ + * $Id: db_aout.c,v 1.12 1995/11/24 14:13:30 bde Exp $ */ /* @@ -62,6 +62,7 @@ * -> strings */ +static void X_db_sym_init __P((int *symtab, char *esymtab, char *name)); /* * Find pointers to the start and end of the symbol entries, * given a pointer to the start of the symbol table. @@ -70,7 +71,7 @@ (sp = (struct nlist *)((symtab) + 1), \ ep = (struct nlist *)((char *)sp + *(symtab))) -void +static void X_db_sym_init(symtab, esymtab, name) int * symtab; /* pointer to start of symbol table */ char * esymtab; /* pointer to end of string table, |