diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-09-08 08:12:39 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-09-08 08:12:39 +0000 |
commit | 06d6611aacdfcbc0bea3033b59b6bb2e35491fef (patch) | |
tree | c3aa81b51a11f7129fae9753fd6fe065d725fb58 /malloc/mcheck-init.c | |
parent | 590b40f7ec801ea1b4be47112a016ed369041e64 (diff) | |
download | glibc-06d6611aacdfcbc0bea3033b59b6bb2e35491fef.tar.gz glibc-06d6611aacdfcbc0bea3033b59b6bb2e35491fef.tar.xz glibc-06d6611aacdfcbc0bea3033b59b6bb2e35491fef.zip |
Update.
2004-09-08 Ulrich Drepper <drepper@redhat.com> * malloc/arena.c: Remove __MALLOC_P uses. * malloc/malloc.c: Likewise. * malloc/mtrace.c: Remove __P uses. * malloc/mcheck-init.c: Likewise.
Diffstat (limited to 'malloc/mcheck-init.c')
-rw-r--r-- | malloc/mcheck-init.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 <mcheck.h> 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; |