From 64854d0d7c782f4db880b294ce58f85d208faa25 Mon Sep 17 00:00:00 2001 From: "mostang.com!davidm" Date: Wed, 21 Jan 2004 01:05:07 +0000 Subject: [PATCH] Drop argument names from prototypes to reduce namespace pollution. (Logical change 1.156) --- include/libunwind-dynamic.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/libunwind-dynamic.h b/include/libunwind-dynamic.h index 051e5f0c..4285836e 100644 --- a/include/libunwind-dynamic.h +++ b/include/libunwind-dynamic.h @@ -1,5 +1,5 @@ /* libunwind - a platform-independent unwind library - Copyright (C) 2002-2003 Hewlett-Packard Co + Copyright (C) 2002-2004 Hewlett-Packard Co Contributed by David Mosberger-Tang This file is part of libunwind. @@ -184,11 +184,11 @@ unw_dyn_info_list_t; /* Register the unwind info for a single procedure. This routine is NOT signal-safe. */ -extern void _U_dyn_register (unw_dyn_info_t *di); +extern void _U_dyn_register (unw_dyn_info_t *); /* Cancel the unwind info for a single procedure. This routine is NOT signal-safe. */ -extern void _U_dyn_cancel (unw_dyn_info_t *di); +extern void _U_dyn_cancel (unw_dyn_info_t *); /* Convenience routines. */