From 06d6611aacdfcbc0bea3033b59b6bb2e35491fef Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 8 Sep 2004 08:12:39 +0000 Subject: Update. 2004-09-08 Ulrich Drepper * malloc/arena.c: Remove __MALLOC_P uses. * malloc/malloc.c: Likewise. * malloc/mtrace.c: Remove __P uses. * malloc/mcheck-init.c: Likewise. --- malloc/mcheck-init.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'malloc/mcheck-init.c') diff --git a/malloc/mcheck-init.c b/malloc/mcheck-init.c index a01d9db125..b6354cafaf 100644 --- a/malloc/mcheck-init.c +++ b/malloc/mcheck-init.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1994, 1995, 1996 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1994, 1995, 1996, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -23,9 +23,9 @@ #include static void -turn_on_mcheck __P ((void)) +turn_on_mcheck (void) { mcheck (NULL); } -void (*__malloc_initialize_hook) __P ((void)) = turn_on_mcheck; +void (*__malloc_initialize_hook) (void) = turn_on_mcheck; -- cgit v1.2.3