summaryrefslogtreecommitdiffstats
path: root/sys/ddb/db_sym.c
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1997-06-30 23:49:17 +0000
committerbde <bde@FreeBSD.org>1997-06-30 23:49:17 +0000
commit276d810752f550173403a661a1e4d1207bf4b48e (patch)
tree143b4f0715995b3264f700e93d932f3a81c987e9 /sys/ddb/db_sym.c
parent17d2759930ce9cfcd5f346db3189864ee61a9126 (diff)
downloadFreeBSD-src-276d810752f550173403a661a1e4d1207bf4b48e.zip
FreeBSD-src-276d810752f550173403a661a1e4d1207bf4b48e.tar.gz
Don't depend on gcc's feature of interpreting `int foo(c) char c; ...'
as `int foo(char c) ...' if there is a bogus prototype `int foo(char c);' in scope.
Diffstat (limited to 'sys/ddb/db_sym.c')
-rw-r--r--sys/ddb/db_sym.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c
index f8628be..7a83f7c 100644
--- a/sys/ddb/db_sym.c
+++ b/sys/ddb/db_sym.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id$
+ * $Id: db_sym.c,v 1.18 1997/02/22 09:28:29 peter Exp $
*/
/*
@@ -102,7 +102,7 @@ boolean_t
db_eqname(src, dst, c)
char *src;
char *dst;
- char c;
+ int c;
{
if (!strcmp(src, dst))
return (TRUE);
OpenPOWER on IntegriCloud